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 <kos/cdefs.h>
23__BEGIN_DECLS
24
25/** \defgroup lan_adapter LAN Adapter
26 \brief Driver for the Dreamcast's LAN Adapter
27 \ingroup networking_drivers
28*/
29
30/* \cond */
31/* Initialize */
32int la_init(void);
33
34/* Shutdown */
35int la_shutdown(void);
36/* \endcond */
37
38__END_DECLS
39
40#endif /* __DC_NET_LAN_ADAPTER_H */
41
Various common macros used throughout the codebase.