WiiFlow_Lite/source/homebrew/homebrew.h
fix94.1 e399a8cbc4 -autobooting nintendont games via args if nintendont 1.98 or newer is used, makes the bootup faster
-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
2014-06-24 13:33:54 +00:00

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