wut
v1.7.0
Wii U Toolchain
|
Macros | |
#define | OS_TITLE_ID_COLDBOOT 0xFFFFFFFFFFFFFFFDllu |
Magic title ID used for launching the current coldboot title. More... | |
#define | OS_TITLE_ID_REBOOT 0xFFFFFFFFFFFFFFFEllu |
Magic title ID used for triggering a full system reboot. More... | |
Functions | |
void | OSForceFullRelaunch () |
Forces a OS relaunch on the next title launch. More... | |
void | OSRestartGame (int argc, char *argv[]) |
Restarts the currently running title. More... | |
BOOL | OSShutdown () |
Shuts down the system. More... | |
void | OSLaunchTitleByPathl (const char *path, uint32_t pathSize, int argc,...) |
Launches a title by path. More... | |
void | OSLaunchTitleByPathv (const char *path, uint32_t pathSize, int argc, char *argv[]) |
Launches a title by path. More... | |
void | OSLaunchTitlel (uint64_t titleId, int argc,...) |
Launches a title by its title ID. More... | |
void | OSLaunchTitlev (uint64_t titleId, int argc, char *argv[]) |
Launches a title by its title ID. More... | |
#define OS_TITLE_ID_COLDBOOT 0xFFFFFFFFFFFFFFFDllu |
#define OS_TITLE_ID_REBOOT 0xFFFFFFFFFFFFFFFEllu |
void OSForceFullRelaunch | ( | ) |
Forces a OS relaunch on the next title launch.
void OSRestartGame | ( | int | argc, |
char * | argv[] | ||
) |
Restarts the currently running title.
argc | The amount of arguments in argv . |
argv | An array of argument strings. |
BOOL OSShutdown | ( | ) |
Shuts down the system.
void OSLaunchTitleByPathl | ( | const char * | path, |
uint32_t | pathSize, | ||
int | argc, | ||
... | |||
) |
Launches a title by path.
path | The path to launch the title from. |
pathSize | The size of the path string. |
argc | The amount of argument strings. |
... | Argument strings passed to the title as argv . |
void OSLaunchTitleByPathv | ( | const char * | path, |
uint32_t | pathSize, | ||
int | argc, | ||
char * | argv[] | ||
) |
Launches a title by path.
path | The path to launch the title from. |
pathSize | The size of the path string. |
argc | The amount of arguments in argv . |
argv | An array of argument strings. |
void OSLaunchTitlel | ( | uint64_t | titleId, |
int | argc, | ||
... | |||
) |
Launches a title by its title ID.
titleId | The ID of the title to launch. |
argc | The amount of argument strings. |
... | Argument strings passed to the title as argv . |
void OSLaunchTitlev | ( | uint64_t | titleId, |
int | argc, | ||
char * | argv[] | ||
) |
Launches a title by its title ID.
titleId | The ID of the title to launch. |
argc | The amount of arguments in argv . |
argv | An array of argument strings. |