repo.or.cz
/
bootos.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added boot process information to help someone find out what really happens.
[bootos.git]
/
stage2
/
gelic_netif.h
blob
d7b405f5dae0b55c712be2ab0cd1c51458204051
1
#ifndef GELIC_NETIF_H
2
#define GELIC_NETIF_H
3
4
#include
"lwip/opt.h"
5
#include
"lwip/def.h"
6
#include
"lwip/mem.h"
7
#include
"lwip/pbuf.h"
8
#include
"lwip/sys.h"
9
#include
"lwip/stats.h"
10
#include
"lwip/snmp.h"
11
#include
"netif/etharp.h"
12
13
err_t
gelicif_init
(
struct
netif
*
netif
);
14
err_t
gelicif_shutdown
(
struct
netif
*
netif
);
15
int
gelicif_input
(
struct
netif
*
netif
);
16
17
18
#endif