mirror of
https://github.com/ep00ch/lwip-contrib-mac.git
synced 2024-11-06 04:05:03 +00:00
12 lines
240 B
C
12 lines
240 B
C
#ifndef __PKTIF_H__
|
|
#define __PKTIF_H__
|
|
|
|
#include "lwip/err.h"
|
|
#include "lwip/netif.h"
|
|
|
|
err_t ethernetif_init (struct netif *netif);
|
|
void ethernetif_shutdown(struct netif *netif);
|
|
void ethernetif_poll (struct netif *netif);
|
|
|
|
#endif
|