mirror of
https://github.com/devkitPro/wut.git
synced 2026-03-31 06:15:09 -05:00
29 lines
277 B
C
29 lines
277 B
C
#pragma once
|
|
|
|
#include <wut.h>
|
|
|
|
/**
|
|
* \defgroup coreinit_launch Launch
|
|
* \ingroup coreinit
|
|
* @{
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void
|
|
OSForceFullRelaunch();
|
|
|
|
void
|
|
OSRestartGame(int argc, char *argv[]);
|
|
|
|
BOOL
|
|
OSShutdown();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|