e1a36e8988
* only get the list of shit installed on the wii 1 time and use that list globally for stuff like checking if something is installed, getting channel names, getting title versions * remove unused files * probably fuckup svn merge
29 lines
551 B
C
29 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);
|
|
bool Sys_IsHermes();
|
|
s32 IOS_ReloadIOSsafe(int ios);
|
|
void ScreenShot();
|
|
s32 CheckForCIOS();
|
|
int LoadAppCIOS();
|
|
void ShowMemInfo();
|
|
extern s32 ios222rev;
|
|
extern s32 ios223rev;
|
|
extern s32 ios249rev;
|
|
extern s32 ios250rev;
|
|
|
|
|
|
#endif
|
|
|