Add basic sysapp RPL imports

This commit is contained in:
shinyquagsire23
2016-07-24 19:06:36 -07:00
parent 60e3575f59
commit cdb90a39a7
6 changed files with 95 additions and 1 deletions

40
include/sysapp/launch.h Normal file
View 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
View 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
/** @} */