mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
11 lines
173 B
C
11 lines
173 B
C
|
#ifndef _APPLOADER_H_
|
||
|
#define _APPLOADER_H_
|
||
|
|
||
|
/* Entry point */
|
||
|
typedef void (*entry_point)(void);
|
||
|
|
||
|
/* Prototypes */
|
||
|
s32 Apploader_Run(entry_point *, u8, u8, u8);
|
||
|
|
||
|
#endif
|