usbloadergx/source/lstub.h

25 lines
731 B
C
Raw Normal View History

//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-23 20:48:03 -04:00
s32 Set_Stub(u64 reqID);
//load the default HBC stub into memory. as long as nothing writes to the 0x80001800
2023-01-01 14:00:08 -03:00
// +0xDC7 memory block it will stay there. by default it has 0x00010001/UNEO.
void loadStub();
//returns 0 or 1 depending on wether the stub is available
u8 hbcStubAvailable();
//returns a valid title to return to
2023-01-01 14:00:08 -03:00
u64 returnTo(bool onlyHBC = false);
#endif