mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 17:29:17 +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
|