mirror of
https://github.com/wiidev/usbloadergx.git
synced 2025-02-14 10:29:17 +01:00
![dimok321](/assets/img/avatar_default.png)
NOTE: There is a GameSettings you need to turn ON to load Alternate DOLs. The alternate DOL has to be called 6 IDs .dol for example RHDP8P.dol and has to be in the root of the SD. Giantpune will add custom path support i dont have time for it.
20 lines
264 B
C
20 lines
264 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 *, u8, u8, u8, u8, u8, u8);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|