2016-07-25 04:06:36 +02:00
|
|
|
#pragma once
|
|
|
|
#include <wut.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \defgroup sysapp_launch SYSAPP Launch
|
|
|
|
* \ingroup sysapp
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2016-08-15 06:33:58 +02:00
|
|
|
extern "C" {
|
2016-07-25 04:06:36 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
void
|
2017-06-02 12:50:57 +02:00
|
|
|
SYSRelaunchTitle(uint32_t argc,
|
2016-07-25 04:06:36 +02:00
|
|
|
char *pa_Argv[]);
|
|
|
|
|
|
|
|
void
|
|
|
|
SYSLaunchMenu();
|
|
|
|
|
|
|
|
void
|
|
|
|
SYSLaunchTitle(uint64_t TitleId);
|
|
|
|
|
|
|
|
void
|
|
|
|
_SYSLaunchMiiStudio();
|
|
|
|
|
|
|
|
void
|
|
|
|
_SYSLaunchSettings();
|
|
|
|
|
|
|
|
void
|
|
|
|
_SYSLaunchParental();
|
|
|
|
|
|
|
|
void
|
|
|
|
_SYSLaunchNotifications();
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/** @} */
|