mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 19:15:07 +01:00
21 lines
292 B
C
21 lines
292 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);
|
||
|
s32 Sys_GetCerts(signed_blob **, u32 *);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|