KallistiOS git master
Independent SDK for the Sega Dreamcast
Loading...
Searching...
No Matches
fs_dclsocket.h
Go to the documentation of this file.
1/* KallistiOS ##version##
2
3 dc/fs_dclsocket.h
4 Copyright (C) 2007, 2008 Lawrence Sebald
5
6*/
7
8/** \file dc/fs_dclsocket.h
9 \brief Implementation of dcload-ip over KOS sockets.
10 \ingroup vfs_dcload
11
12 This file contains declarations related to using dcload-ip over the KOS
13 sockets system. If dcload-ip support is enabled at the same time as network
14 support, this is how the communications will happen. There isn't really
15 anything that users will need to deal with in here.
16
17 \author Lawrence Sebald
18*/
19
20#ifndef __DC_FSDCLSOCKET_H
21#define __DC_FSDCLSOCKET_H
22
23#include <kos/cdefs.h>
24__BEGIN_DECLS
25
26/** \addtogroup vfs_dcload
27 @{
28*/
29
30/* \cond */
31extern dbgio_handler_t dbgio_dcls;
32
33/* Initialization */
34void fs_dclsocket_init_console(void);
35int fs_dclsocket_init(void);
36
37void fs_dclsocket_shutdown(void);
38/* \endcond */
39
40/** @} */
41
42__END_DECLS
43
44#endif /* __DC_FSDCLSOCKET_H */
Various common macros used throughout the codebase.
Debug I/O Interface.
Definition dbgio.h:42