mirror of
https://github.com/TheShadowEevee/Sharpii-NetCore.git
synced 2025-01-12 07:08:50 -06:00
12 lines
194 B
C
12 lines
194 B
C
|
#ifndef _SYS_H_
|
||
|
#define _SYS_H_
|
||
|
|
||
|
/* Prototypes */
|
||
|
void Sys_Init(void);
|
||
|
void Sys_Reboot(void);
|
||
|
void Sys_Shutdown(void);
|
||
|
void Sys_LoadMenu(void);
|
||
|
s32 Sys_GetCerts(signed_blob **, u32 *);
|
||
|
|
||
|
#endif
|