Difference between revisions of "Sysapp.rpl"
Jump to navigation
Jump to search
(misspelled imports make everyone sad) |
|||
(6 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | This library can switch/launch Apps. | + | This library can switch to/launch Apps. |
==Functions== | ==Functions== | ||
===SYSSwitch=== | ===SYSSwitch=== | ||
Line 13: | Line 13: | ||
|SYSSwitchToEManual | |SYSSwitchToEManual | ||
|void SYSSwitchToEManual(void); | |void SYSSwitchToEManual(void); | ||
− | |Sys will jump to | + | |Sys will jump to E-manual after _Exit call |
|- | |- | ||
|SYSSwitchToEShop | |SYSSwitchToEShop | ||
Line 22: | Line 22: | ||
|void _SYSSwitchToMainApp(void); | |void _SYSSwitchToMainApp(void); | ||
|Sys will jump to the Main App after _Exit call | |Sys will jump to the Main App after _Exit call | ||
+ | |- | ||
+ | |SYSSwitchToBrowserForViewer | ||
+ | |void SYSSwitchToBrowserForViewer(input_struct*); | ||
+ | |This launches the web-browser with the URL specified via input_struct. | ||
|} | |} | ||
Line 29: | Line 33: | ||
!Prototype | !Prototype | ||
!Description | !Description | ||
+ | |- | ||
+ | |SYSRelaunchTitle | ||
+ | |void SYSRelaunchTitle(uint32_t argc, char *pa_Argv[]); | ||
+ | |Restart your current App(browser)with new arguments after _Exit call | ||
|- | |- | ||
|SYSLaunchMenu | |SYSLaunchMenu | ||
|void SYSLaunchMenu(void); | |void SYSLaunchMenu(void); | ||
− | |Sys will launch the Launcher after _Exit call | + | |Sys will launch the Launcher after _Exit call |
|- | |- | ||
|SYSLaunchTitle | |SYSLaunchTitle | ||
− | |void SYSLaunchTitle( | + | |void SYSLaunchTitle(uint64_t TitleId); |
|Sys will lauch the Title after _Exit call | |Sys will lauch the Title after _Exit call | ||
|- | |- | ||
Line 41: | Line 49: | ||
|void _SYSLaunchMiiStudio(void); | |void _SYSLaunchMiiStudio(void); | ||
|Sys will lauch the Miistudio after _Exit call | |Sys will lauch the Miistudio after _Exit call | ||
+ | |- | ||
+ | |_SYSLaunchSettings | ||
+ | |void _SYSLaunchSettings(void); | ||
+ | |Sys will lauch the Settings after _Exit call | ||
+ | |- | ||
+ | |_SYSLaunchParental | ||
+ | |void _SYSLaunchParental(void); | ||
+ | |Sys will lauch the Parental Control Settings after _Exit call | ||
+ | |- | ||
+ | |_SYSLaunchNotifications | ||
+ | |void _SYSLaunchNotifications(void); | ||
+ | |Sys will lauch the Notifications after _Exit call | ||
+ | |- | ||
|} | |} |
Latest revision as of 03:39, 25 July 2016
This library can switch to/launch Apps.
Functions
SYSSwitch
Name | Prototype | Description |
---|---|---|
SYSSwitchToSyncControllerOnHBM | void SYSSwitchToSyncControllerOnHBM(void); | Sys will jump to the Wii Remote pairing screen after _Exit call. |
SYSSwitchToEManual | void SYSSwitchToEManual(void); | Sys will jump to E-manual after _Exit call |
SYSSwitchToEShop | void SYSSwitchToEShop(void); | Sys will jump to the EShop after _Exit call |
_SYSSwitchToMainApp | void _SYSSwitchToMainApp(void); | Sys will jump to the Main App after _Exit call |
SYSSwitchToBrowserForViewer | void SYSSwitchToBrowserForViewer(input_struct*); | This launches the web-browser with the URL specified via input_struct. |
SYSLaunch
Name | Prototype | Description |
---|---|---|
SYSRelaunchTitle | void SYSRelaunchTitle(uint32_t argc, char *pa_Argv[]); | Restart your current App(browser)with new arguments after _Exit call |
SYSLaunchMenu | void SYSLaunchMenu(void); | Sys will launch the Launcher after _Exit call |
SYSLaunchTitle | void SYSLaunchTitle(uint64_t TitleId); | Sys will lauch the Title after _Exit call |
_SYSLaunchMiiStudio | void _SYSLaunchMiiStudio(void); | Sys will lauch the Miistudio after _Exit call |
_SYSLaunchSettings | void _SYSLaunchSettings(void); | Sys will lauch the Settings after _Exit call |
_SYSLaunchParental | void _SYSLaunchParental(void); | Sys will lauch the Parental Control Settings after _Exit call |
_SYSLaunchNotifications | void _SYSLaunchNotifications(void); | Sys will lauch the Notifications after _Exit call |