mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-14 00:31:50 +01:00
28 lines
305 B
C
28 lines
305 B
C
|
#pragma once
|
||
|
|
||
|
/**
|
||
|
* \defgroup whb_socketinit Socket Library Initialization Manager
|
||
|
* \ingroup whb
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/**
|
||
|
* Socket Library (nsysnet.rpl)
|
||
|
*/
|
||
|
|
||
|
void
|
||
|
WHBInitializeSocketLibrary();
|
||
|
|
||
|
void
|
||
|
WHBDeinitializeSocketLibrary();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
/** @} */
|