wut/libraries/libwhb/include/whb/log_console.h
2018-05-25 11:48:14 +01:00

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
/** @} */