mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 18:11:49 +01:00
25 lines
229 B
C
25 lines
229 B
C
|
#pragma once
|
||
|
#include <wut.h>
|
||
|
|
||
|
/**
|
||
|
* \defgroup whb_log_udp UDP Log Output
|
||
|
* \ingroup whb
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
BOOL
|
||
|
WHBLogUdpInit();
|
||
|
|
||
|
BOOL
|
||
|
WHBLogUdpDeinit();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
/** @} */
|