KallistiOS git master
Independent SDK for the Sega Dreamcast
Loading...
Searching...
No Matches
lan_adapter.h
Go to the documentation of this file.
1/* KallistiOS ##version##
2
3 dc/net/lan_adapter.h
4 Copyright (C) 2002 Megan Potter
5
6*/
7
8/** \file dc/net/lan_adapter.h
9 \brief LAN Adapter support.
10 \ingroup lan_adapter
11
12 This file contains declarations related to support for the HIT-0300 "LAN
13 Adapter". There's not really anything that users will generally have to deal
14 with in here.
15
16 \author Megan Potter
17*/
18
19#ifndef __DC_NET_LAN_ADAPTER_H
20#define __DC_NET_LAN_ADAPTER_H
21
22#include <sys/cdefs.h>
23__BEGIN_DECLS
24
25#include <kos/net.h>
26
27/** \defgroup lan_adapter LAN Adapter
28 \brief Driver for the Dreamcast's LAN Adapter
29 \ingroup networking_drivers
30*/
31
32/* \cond */
33/* Initialize */
34int la_init(void);
35
36/* Shutdown */
37int la_shutdown(void);
38/* \endcond */
39
40__END_DECLS
41
42#endif /* __DC_NET_LAN_ADAPTER_H */
43
Network support.