mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 01:09:16 +01:00
64744ce20d
*Fixed Toy Story 3 boot bug *Changed IOS limits. Now allowing all IOSs from 200-255 to support more Waninkoko cIOS slots. You will get a warning if you don't have an IOS installed and try to choose it.
19 lines
440 B
C
19 lines
440 B
C
#ifndef _SYS_H_
|
|
#define _SYS_H_
|
|
|
|
void wiilight(int enable);
|
|
|
|
/* Prototypes */
|
|
void AppCleanUp(void); //! Deletes all allocated space for everything
|
|
void ExitApp(void); //! Like AppCleanUp() and additional device unmount
|
|
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);
|
|
void ScreenShot();
|
|
|
|
#endif
|