usbloadergx/source/usbloader/apploader.h

20 lines
305 B
C
Raw Normal View History

#ifndef _APPLOADER_H_
#define _APPLOADER_H_
#ifdef __cplusplus
extern "C"
{
#endif
/* Entry point */
2010-09-24 02:48:03 +02:00
typedef void (*entry_point)(void);
/* Prototypes */
s32 Apploader_Run(entry_point *entry, char * dolpath, u8 alternatedol, u32 alternatedoloffset);
#ifdef __cplusplus
}
#endif
#endif