2009-09-30 23:10:58 +00:00
|
|
|
#ifndef _BOOTHOMEBREW_H_
|
|
|
|
#define _BOOTHOMEBREW_H_
|
|
|
|
|
2010-09-18 23:04:39 +00:00
|
|
|
//int BootHomebrew();
|
|
|
|
int BootHomebrewFromMem();
|
2010-09-18 23:16:05 +00:00
|
|
|
int BootHomebrew( char * filepath );
|
|
|
|
int CopyHomebrewMemory( u8 *temp, u32 pos, u32 len );
|
|
|
|
void AddBootArgument( const char * arg );
|
2010-09-16 11:54:18 +00:00
|
|
|
void FreeHomebrewBuffer();
|
2010-09-18 23:16:05 +00:00
|
|
|
int LoadHomebrew( const char * filepath );
|
2010-09-18 23:04:39 +00:00
|
|
|
int AllocHomebrewMemory( u32 filesize );
|
|
|
|
extern void *innetbuffer;
|
|
|
|
extern u32 homebrewsize;
|
2009-09-30 23:10:58 +00:00
|
|
|
|
|
|
|
#endif
|