mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-14 01:31:50 +01:00
36 lines
417 B
C
36 lines
417 B
C
#pragma once
|
|
#include <wut.h>
|
|
|
|
/**
|
|
* \defgroup sysapp_switch SYSAPP Switch
|
|
* \ingroup sysapp
|
|
* @{
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct SysAppBrowserArgs SysAppBrowserArgs;
|
|
|
|
void
|
|
SYSSwitchToSyncControllerOnHBM();
|
|
|
|
void
|
|
SYSSwitchToEManual();
|
|
|
|
void
|
|
SYSSwitchToEShop();
|
|
|
|
void
|
|
_SYSSwitchToMainApp();
|
|
|
|
void
|
|
SYSSwitchToBrowserForViewer(SysAppBrowserArgs *);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|