mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 01:09:16 +01:00
15bcbfa482
You will see the list of available channels on your system if you start without a HDD or if your HDD is slow and is being recognized late. The list of games is than reloading as soon as it is recognized. *Hot swapping of the SD card was implemented into background thread (by giantpune) *Made lots of cleanups and some fixes *Format menu was moved to settings page 3 (only on godmode accessable) *Added ScreenShot and Reset/Shutdown call to background thread. Removed the not needed ones. Now you can call for Screenshot/Reset/Shutdown anywhere in the loader (after gui is started).
30 lines
551 B
C
30 lines
551 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);
|
|
s32 CheckForCIOS();
|
|
int LoadAppCIOS();
|
|
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
|
|
|