mirror of
https://github.com/devkitPro/wut.git
synced 2026-04-18 07:25:59 -05: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
|
|
|
|
/** @} */
|