mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-14 00:21:48 +01:00
25 lines
243 B
C
25 lines
243 B
C
|
#pragma once
|
||
|
#include <wut.h>
|
||
|
|
||
|
/**
|
||
|
* \defgroup whb_log_cafe Cafe OS System Log Output
|
||
|
* \ingroup whb
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
BOOL
|
||
|
WHBLogCafeInit();
|
||
|
|
||
|
BOOL
|
||
|
WHBLogCafeDeinit();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
/** @} */
|