mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
22ca798b5e
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
|