mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 21:51:53 +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
|
|
|
|
/** @} */
|