mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
0cb0b7537f
* Updated DIOS MIOS (Lite) detection up to v2.11 * Homebrew's AddBootArgument() function now accepts struct as arguments (Thanks Fix94) Nintendont : * Always delete previous nincfg.bin file when launching a game. * Added Argument Booting method for nintendont v1.98+ (faster booting, no nincfg.bin file written to device) * Added "Update Nintendont" option in features menu. Issue 2260
12 lines
307 B
C
12 lines
307 B
C
#ifndef _BOOTHOMEBREW_H_
|
|
#define _BOOTHOMEBREW_H_
|
|
|
|
int BootHomebrew(const char * filepath);
|
|
int BootHomebrewFromMem();
|
|
int CopyHomebrewMemory(u8 *temp, u32 pos, u32 len);
|
|
void AddBootArgument(const char * argv);
|
|
void AddBootArgument(const char * argv, unsigned int size);
|
|
void FreeHomebrewBuffer();
|
|
|
|
#endif
|