mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-03 18:15:06 +01:00
973d8b2005
*Converted every 4 spaces to a tab to make the source consistent on those
20 lines
293 B
C
20 lines
293 B
C
#ifndef _APPLOADER_H_
|
|
#define _APPLOADER_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
/* Entry point */
|
|
typedef void (*entry_point)(void);
|
|
|
|
/* Prototypes */
|
|
s32 Apploader_Run(entry_point *entry, char * dolpath, u8 alternatedol, u32 alternatedoloffset);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|