mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 14:42:38 +01:00
41 lines
439 B
C
41 lines
439 B
C
#pragma once
|
|
#include <wut.h>
|
|
|
|
/**
|
|
* \defgroup sysapp_launch SYSAPP Launch
|
|
* \ingroup sysapp
|
|
* @{
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "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
|
|
|
|
/** @} */
|