mirror of
https://github.com/devkitPro/wut.git
synced 2026-04-14 05:25:51 -05:00
25 lines
252 B
C
25 lines
252 B
C
#pragma once
|
|
#include <wut.h>
|
|
|
|
/**
|
|
* \defgroup whb_log_module Log using the LoggingModule.
|
|
* \ingroup whb
|
|
* @{
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
BOOL
|
|
WHBLogModuleInit();
|
|
|
|
BOOL
|
|
WHBLogModuleDeinit();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|