2020-05-06 23:33:32 +02:00
|
|
|
#ifndef VNET_H_INCLUDED
|
|
|
|
#define VNET_H_INCLUDED
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include "kolibri.h"
|
|
|
|
|
|
|
|
void *vnet_init(void);
|
|
|
|
|
|
|
|
__attribute__((__stdcall__))
|
|
|
|
void vnet_unload(void);
|
|
|
|
|
|
|
|
__attribute__((__stdcall__))
|
|
|
|
void vnet_reset(void);
|
|
|
|
|
|
|
|
__attribute__((__stdcall__))
|
2020-05-07 03:08:20 +02:00
|
|
|
void vnet_transmit(net_buff_t *buf);
|
2020-05-06 23:33:32 +02:00
|
|
|
|
|
|
|
#endif // VNET_H_INCLUDED
|