mirror of
https://github.com/devkitPro/wut.git
synced 2026-09-09 03:35:51 -05:00
Add basic sysapp RPL imports
This commit is contained in:
40
include/sysapp/launch.h
Normal file
40
include/sysapp/launch.h
Normal file
@@ -0,0 +1,40 @@
|
||||
#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
|
||||
|
||||
/** @} */
|
||||
36
include/sysapp/switch.h
Normal file
36
include/sysapp/switch.h
Normal file
@@ -0,0 +1,36 @@
|
||||
#pragma once
|
||||
#include <wut.h>
|
||||
|
||||
/**
|
||||
* \defgroup sysapp_switch SYSAPP Switch
|
||||
* \ingroup sysapp
|
||||
* @{
|
||||
*/
|
||||
|
||||
#ifdef __cplusplus
|
||||
"C" {
|
||||
#endif
|
||||
|
||||
//TODO
|
||||
typedef void sysapp_input_struct;
|
||||
|
||||
void
|
||||
SYSSwitchToSyncControllerOnHBM();
|
||||
|
||||
void
|
||||
SYSSwitchToEManual();
|
||||
|
||||
void
|
||||
SYSSwitchToEShop();
|
||||
|
||||
void
|
||||
_SYSSwitchToMainApp();
|
||||
|
||||
void
|
||||
SYSSwitchToBrowserForViewer(sysapp_input_struct*);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
/** @} */
|
||||
Reference in New Issue
Block a user