2009-10-20 23:00:19 +00:00
|
|
|
//small group of functions to manipulate the HBC stub
|
|
|
|
//brought to you by giantpune
|
|
|
|
|
|
|
|
#ifndef _LSTUB_H_
|
|
|
|
#define _LSTUB_H_
|
|
|
|
|
|
|
|
//to set the "return to" stub for a certain ID
|
|
|
|
//!reqID is the Requested ID to return to
|
|
|
|
//!returns WII_EINTERNAL if it cant get the list of installed titles with ES functions
|
|
|
|
//!retuns -69 if the ID is not installed
|
|
|
|
//!1 if successful
|
2010-09-24 00:48:03 +00:00
|
|
|
s32 Set_Stub(u64 reqID);
|
2009-10-20 23:00:19 +00:00
|
|
|
|
|
|
|
//load the default HBC stub into memory. as long as nothing writes to the 0x80001800
|
|
|
|
// +0xDC7 memory block it will stay there. by default it has 0x00010001/JODI.
|
2010-02-09 10:59:55 +00:00
|
|
|
void loadStub();
|
2009-10-20 23:00:19 +00:00
|
|
|
|
|
|
|
//get whatever ID the stub is set to load
|
|
|
|
//!returns 0 if no stub is loaded into memory (must be the HBC stub at 0x800018000)
|
2010-09-18 23:16:05 +00:00
|
|
|
//!otherwise returns the ID set to return to
|
2010-02-09 10:59:55 +00:00
|
|
|
u64 getStubDest();
|
2009-10-20 23:00:19 +00:00
|
|
|
|
2009-12-10 20:27:36 +00:00
|
|
|
//returns 0 or 1 depending on wether the stub is available
|
2010-02-09 10:59:55 +00:00
|
|
|
u8 hbcStubAvailable();
|
2009-10-20 23:00:19 +00:00
|
|
|
|
2021-08-01 18:00:15 +01:00
|
|
|
//returns a valid title to return to
|
|
|
|
u64 returnTo(u64 currentStub);
|
|
|
|
|
2009-10-20 23:00:19 +00:00
|
|
|
#endif
|