KallistiOS  2.0.0
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups
lan_adapter.h
Go to the documentation of this file.
1 /* KallistiOS 2.0.0
2 
3  dc/net/lan_adapter.h
4  Copyright (C) 2002 Dan Potter
5 
6 */
7 
8 /** \file dc/net/lan_adapter.h
9  \brief LAN Adapter support.
10 
11  This file contains declarations related to support for the HIT-0300 "LAN
12  Adapter". There's not really anything that users will generally have to deal
13  with in here.
14 
15  \author Dan Potter
16 */
17 
18 #ifndef __DC_NET_LAN_ADAPTER_H
19 #define __DC_NET_LAN_ADAPTER_H
20 
21 #include <sys/cdefs.h>
22 __BEGIN_DECLS
23 
24 #include <kos/net.h>
25 
26 /* \cond */
27 /* Initialize */
28 int la_init();
29 
30 /* Shutdown */
31 int la_shutdown();
32 /* \endcond */
33 
34 __END_DECLS
35 
36 #endif /* __DC_NET_LAN_ADAPTER_H */
37