mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 00:55:06 +01:00
e399a8cbc4
-nintendonts memory card emulation is now enabled by default -if using a wiiu wiiflow will now automatically use nintendont or devolution instead of the MIOS to boot gamecube games by default -fixed the bug that wiiflow did not display gamecube games even if nintendont is available
17 lines
386 B
C
17 lines
386 B
C
|
|
#ifndef _BOOTHOMEBREW_H_
|
|
#define _BOOTHOMEBREW_H_
|
|
|
|
typedef void (*entry)(void);
|
|
|
|
void BootHomebrew();
|
|
void AddBootArgument(const char *argv);
|
|
void AddBootArgument(const char *argv, unsigned int size);
|
|
bool LoadHomebrew(const char *filepath);
|
|
char *GetHomebrew(unsigned int *size);
|
|
bool LoadAppBooter(const char *filepath);
|
|
void JumpToEntry(entry EntryPoint);
|
|
void writeStub();
|
|
|
|
#endif
|