mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-08 20:45:07 +01:00
3f9cdb5468
*Moved R896 to the branch
28 lines
512 B
C
28 lines
512 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();
|
|
s32 IOS_ReloadIOSsafe(int ios);
|
|
void ScreenShot();
|
|
|
|
void ShowMemInfo();
|
|
extern s32 ios222rev;
|
|
extern s32 ios223rev;
|
|
extern s32 ios249rev;
|
|
extern s32 ios250rev;
|
|
|
|
#endif
|
|
|