mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 20:01:53 +01:00
37 lines
400 B
C
37 lines
400 B
C
|
#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
|
||
|
|
||
|
/** @} */
|