mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
22 lines
321 B
C
22 lines
321 B
C
#ifndef _SYS_H_
|
|
#define _SYS_H_
|
|
#include <asndlib.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
/* Prototypes */
|
|
void Sys_Init(void);
|
|
void Sys_Reboot(void);
|
|
void Sys_Shutdown(void);
|
|
void Sys_LoadMenu(void);
|
|
int Sys_IosReload(int IOS);
|
|
s32 Sys_GetCerts(signed_blob **, u32 *);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|