mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-13 13:56:49 -04:00
9649319ec4
* Reorganize files into libs/{dolphin,JSystem,PowerPC_EABI_Support,revolution,TRK_MINNOW_DOLPHIN}
* Update configure.py and project.py for new libs structure
* Refactor `#include <dolphin/x.h>` -> `<x.h>`
* Remove `__REVOLUTION_SDK__` forwards from dolphin
* Fix dolphin/ references in revolution
* Wrap `#include <dolphin.h>` in `!__REVOLUTION_SDK__`
* Always build TRK against dolphin headers
* Resolve revolution SDK header resolution issues
36 lines
791 B
C
36 lines
791 B
C
#ifndef _DOLPHIN_OSEXEC_H_
|
|
#define _DOLPHIN_OSEXEC_H_
|
|
|
|
#include <dolphin/types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
BOOL valid;
|
|
u32 restartCode;
|
|
u32 bootDol;
|
|
void* regionStart;
|
|
void* regionEnd;
|
|
int argsUseDefault;
|
|
void* argsAddr;
|
|
} OSExecParams;
|
|
|
|
typedef int (*appGetNextCallback)(void*, u32*, u32*);
|
|
typedef void (*appInitCallback)(void (*)(char*));
|
|
typedef void* (*appGetEntryCallback)();
|
|
typedef void (*AppLoaderCallback)(appInitCallback*, appGetNextCallback*, appGetEntryCallback*);
|
|
|
|
OSExecParams* __OSExecParams AT_ADDRESS(0x800030F0);
|
|
s32 __OSAppLoaderOffset AT_ADDRESS(0x800030F4);
|
|
|
|
void OSExecv(const char* dolfile, const char** argv);
|
|
void OSExecl(const char* dolfile, const char* arg0, ...);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|