mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 14:22:38 +01:00
30 lines
317 B
C
30 lines
317 B
C
#pragma once
|
|
#include <wut.h>
|
|
|
|
/**
|
|
* \defgroup whb_log_console On screen console log output
|
|
* \ingroup whb
|
|
* @{
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define WHB_SERVER_BUFFER_SIZE 1024
|
|
|
|
BOOL
|
|
WHBLogConsoleInit();
|
|
|
|
void
|
|
WHBLogConsoleFree();
|
|
|
|
void
|
|
WHBLogConsoleDraw();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|