WiiFlow_Lite/source/homebrew/homebrew.h

15 lines
289 B
C

#ifndef _BOOTHOMEBREW_H_
#define _BOOTHOMEBREW_H_
typedef void (*entry)(void);
void BootHomebrew();
void AddBootArgument(const char * arg);
bool LoadHomebrew(const char * filepath);
bool LoadAppBooter(const char *filepath);
void JumpToEntry(entry EntryPoint);
void writeStub();
#endif