2009-09-30 23:10:58 +00:00
|
|
|
#ifndef _APPLOADER_H_
|
|
|
|
#define _APPLOADER_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2010-09-18 23:16:05 +00:00
|
|
|
extern "C"
|
|
|
|
{
|
2009-09-30 23:10:58 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Entry point */
|
2010-09-24 00:48:03 +00:00
|
|
|
typedef void (*entry_point)(void);
|
2009-09-30 23:10:58 +00:00
|
|
|
|
|
|
|
/* Prototypes */
|
2011-05-30 19:49:12 +00:00
|
|
|
s32 Apploader_Run(entry_point *entry, char * dolpath, u8 alternatedol, u32 alternatedoloffset);
|
2009-09-30 23:10:58 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|