2009-05-03 14:53:31 -04:00
|
|
|
#ifndef _SYS_H_
|
|
|
|
#define _SYS_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
/* Prototypes */
|
|
|
|
void Sys_Init(void);
|
|
|
|
void Sys_Reboot(void);
|
|
|
|
void Sys_Shutdown(void);
|
2009-05-06 05:51:16 -04:00
|
|
|
void Sys_LoadMenu(void);
|
|
|
|
int Sys_IosReload(int IOS);
|
2009-05-03 14:53:31 -04:00
|
|
|
s32 Sys_GetCerts(signed_blob **, u32 *);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|