mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-01 23:25:09 +01:00
12 lines
273 B
C
12 lines
273 B
C
#ifndef _BOOTHOMEBREW_H_
|
|
#define _BOOTHOMEBREW_H_
|
|
|
|
int BootHomebrew();
|
|
int BootGameCubeHomebrew();
|
|
int CopyHomebrewMemory(u8 *temp, u32 pos, u32 len);
|
|
int CopyArgs(u8* temp, u32 len);
|
|
void AddBootArgument(const char * arg);
|
|
int LoadHomebrew(const char * filepath);
|
|
|
|
#endif
|