mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 22:11:50 +01:00
28 lines
298 B
C
28 lines
298 B
C
|
#pragma once
|
||
|
#include <wut.h>
|
||
|
|
||
|
/**
|
||
|
* \defgroup coreinit_foreground Foreground Management
|
||
|
* \ingroup coreinit
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void
|
||
|
OSEnableForegroundExit();
|
||
|
|
||
|
void
|
||
|
OSReleaseForeground();
|
||
|
|
||
|
void
|
||
|
OSSavesDone_ReadyToRelease();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
/** @} */
|