mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 21:21:53 +01:00
31 lines
280 B
C
31 lines
280 B
C
#pragma once
|
|
#include <wut.h>
|
|
|
|
/**
|
|
* \defgroup whb_proc ProcUI Utilities
|
|
* \ingroup whb
|
|
* @{
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void
|
|
WHBProcInit();
|
|
|
|
void
|
|
WHBProcShutdown();
|
|
|
|
void
|
|
WHBProcStopRunning();
|
|
|
|
BOOL
|
|
WHBProcIsRunning();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|