14 lines
338 B
C
14 lines
338 B
C
/* Prototypes and definitions for network drivers. */
|
|
|
|
#ifndef _MINIX_NETDRIVER_H
|
|
#define _MINIX_NETDRIVER_H
|
|
|
|
#include <minix/endpoint.h>
|
|
#include <minix/ipc.h>
|
|
|
|
/* Functions defined by netdriver.c: */
|
|
void netdriver_announce(void);
|
|
int netdriver_receive(endpoint_t src, message *m_ptr, int *status_ptr);
|
|
|
|
#endif /* _MINIX_NETDRIVER_H */
|