mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-04 18:45:05 +01:00
a09abe355f
* Fixed issue 1058 * Menus splitted to several smaller files, to reduce compile time This version has FAT support. You can change the used partition in the game load options. Default WBFS will be used, if found. Otherwise the first FAT partition with games will be used. FAT will only work when using Hermes cios (222/223)!!!
19 lines
354 B
C
19 lines
354 B
C
#ifndef _SYS_H_
|
|
#define _SYS_H_
|
|
|
|
void wiilight(int enable);
|
|
|
|
/* Prototypes */
|
|
void Sys_Init(void);
|
|
void Sys_Reboot(void);
|
|
void Sys_Shutdown(void);
|
|
void Sys_ShutdownToIdel(void);
|
|
void Sys_ShutdownToStandby(void);
|
|
void Sys_LoadMenu(void);
|
|
void Sys_BackToLoader(void);
|
|
int Sys_ChangeIos(int ios);
|
|
int Sys_IosReload(int IOS);
|
|
bool Sys_IsHermes();
|
|
|
|
#endif
|