2009-05-03 20:53:31 +02:00
|
|
|
#ifndef _SYS_H_
|
|
|
|
#define _SYS_H_
|
2009-06-05 00:13:39 +02:00
|
|
|
|
|
|
|
|
|
|
|
void wiilight(int enable);
|
2009-05-03 20:53:31 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
2009-06-01 17:50:18 +02:00
|
|
|
//{
|
2009-05-03 20:53:31 +02:00
|
|
|
#endif
|
|
|
|
/* Prototypes */
|
|
|
|
void Sys_Init(void);
|
|
|
|
void Sys_Reboot(void);
|
|
|
|
void Sys_Shutdown(void);
|
2009-06-01 17:50:18 +02:00
|
|
|
void Sys_ShutdownToIdel(void);
|
|
|
|
void Sys_ShutdownToStandby(void);
|
|
|
|
void Sys_LoadMenu(void);
|
|
|
|
void Sys_BackToLoader(void);
|
2009-05-06 11:51:16 +02:00
|
|
|
int Sys_IosReload(int IOS);
|
2009-05-03 20:53:31 +02:00
|
|
|
s32 Sys_GetCerts(signed_blob **, u32 *);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2009-06-01 17:50:18 +02:00
|
|
|
//}
|
2009-05-03 20:53:31 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|