mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-06 02:08:22 +01:00
41 lines
433 B
C
41 lines
433 B
C
|
#pragma once
|
||
|
#include <wut.h>
|
||
|
|
||
|
/**
|
||
|
* \defgroup sysapp_launch SYSAPP Launch
|
||
|
* \ingroup sysapp
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
"C" {
|
||
|
#endif
|
||
|
|
||
|
void
|
||
|
SYSRelaunchTitle(uint32_t argc,
|
||
|
char *pa_Argv[]);
|
||
|
|
||
|
void
|
||
|
SYSLaunchMenu();
|
||
|
|
||
|
void
|
||
|
SYSLaunchTitle(uint64_t TitleId);
|
||
|
|
||
|
void
|
||
|
_SYSLaunchMiiStudio();
|
||
|
|
||
|
void
|
||
|
_SYSLaunchSettings();
|
||
|
|
||
|
void
|
||
|
_SYSLaunchParental();
|
||
|
|
||
|
void
|
||
|
_SYSLaunchNotifications();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
/** @} */
|