mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-24 04:09:15 +01:00
15 lines
289 B
C
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
|