mirror of
https://github.com/libretro/RetroArch
synced 2025-02-07 21:39:54 +00:00
27 lines
571 B
C
27 lines
571 B
C
#pragma once
|
|
#include <wiiu/types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct sysapp_input_struct sysapp_input_struct;
|
|
|
|
void SYSSwitchToSyncControllerOnHBM();
|
|
void SYSSwitchToEManual();
|
|
void SYSSwitchToEShop();
|
|
void _SYSSwitchToMainApp();
|
|
void SYSSwitchToBrowserForViewer(sysapp_input_struct *);
|
|
|
|
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
|