2009-05-03 20:53:31 +02:00
|
|
|
#ifndef _APPLOADER_H_
|
|
|
|
#define _APPLOADER_H_
|
|
|
|
|
|
|
|
/* Entry point */
|
|
|
|
typedef void (*entry_point)(void);
|
|
|
|
|
|
|
|
/* Prototypes */
|
2009-06-06 19:26:52 +02:00
|
|
|
s32 Apploader_Run(entry_point *, u8, u8, u8, u8, u8);
|
2009-05-03 20:53:31 +02:00
|
|
|
|
|
|
|
#endif
|