2009-05-03 18:53:31 +00:00
|
|
|
#ifndef _SYS_H_
|
|
|
|
#define _SYS_H_
|
2009-06-04 22:13:39 +00:00
|
|
|
|
2010-09-24 00:48:03 +00:00
|
|
|
void wiilight(int enable);
|
2009-06-04 22:13:39 +00:00
|
|
|
|
2009-05-03 18:53:31 +00:00
|
|
|
/* Prototypes */
|
2010-09-24 00:48:03 +00:00
|
|
|
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);
|
2009-11-15 19:52:58 +00:00
|
|
|
bool Sys_IsHermes();
|
2009-12-20 04:26:30 +00:00
|
|
|
void ScreenShot();
|
2010-09-18 23:04:39 +00:00
|
|
|
|
2009-05-03 18:53:31 +00:00
|
|
|
#endif
|