mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 07:10:53 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
26 lines
458 B
C
26 lines
458 B
C
#ifndef RVL_SDK_OS_EXEC_H
|
|
#define RVL_SDK_OS_EXEC_H
|
|
#include "common.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct OSExecParams {
|
|
UNKWORD WORD_0x0;
|
|
UNKWORD WORD_0x4;
|
|
char UNK_0x8[0x4];
|
|
void *regionStart; // at 0xC
|
|
void *regionEnd; // at 0x10
|
|
char UNK_0x14[0x1C - 0x14];
|
|
} OSExecParams;
|
|
|
|
extern BOOL __OSInReboot;
|
|
|
|
void __OSGetExecParams(OSExecParams *out);
|
|
void __OSLaunchMenu(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|