mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-16 00:01:34 +00:00
16 lines
248 B
C
16 lines
248 B
C
|
#ifndef _UNDINET_H
|
||
|
#define _UNDINET_H
|
||
|
|
||
|
/** @file
|
||
|
*
|
||
|
* UNDI network device driver
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
struct undi_device;
|
||
|
|
||
|
extern int undinet_probe ( struct undi_device *undi );
|
||
|
extern void undinet_remove ( struct undi_device *undi );
|
||
|
|
||
|
#endif /* _UNDINET_H */
|