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