mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-14 00:21:48 +01:00
30 lines
345 B
C
30 lines
345 B
C
|
#pragma once
|
||
|
#include <wut.h>
|
||
|
|
||
|
/**
|
||
|
* \defgroup whb_commandserver Network Command Server
|
||
|
* \ingroup whb
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#define WHB_SERVER_BUFFER_SIZE 1024
|
||
|
|
||
|
BOOL
|
||
|
WHBCommandServerInit();
|
||
|
|
||
|
void
|
||
|
WHBCommandServerStop();
|
||
|
|
||
|
BOOL
|
||
|
WHBCommandServerListen(char * stringLocation);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
/** @} */
|