mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-11-05 12:35:06 +01:00
2705a91c13
- Function replacements are not implemented yet - Serveral features like the config menu are missing Still WIP
21 lines
551 B
C
21 lines
551 B
C
#pragma once
|
|
#include <stdint.h>
|
|
|
|
typedef enum RelocationTrampolinStatus{
|
|
RELOC_TRAMP_FREE = 0,
|
|
RELOC_TRAMP_FIXED = 1,
|
|
RELOC_TRAMP_IMPORT_IN_PROGRESS = 2,
|
|
RELOC_TRAMP_IMPORT_DONE = 3,
|
|
} RelocationTrampolinStatus;
|
|
|
|
typedef enum RelocationType{
|
|
RELOC_TYPE_FIXED = 0,
|
|
RELOC_TYPE_IMPORT = 1
|
|
} RelocationType;
|
|
|
|
typedef struct relocation_trampolin_entry_t {
|
|
uint32_t id;
|
|
uint32_t trampolin[4];
|
|
RelocationTrampolinStatus status = RELOC_TRAMP_FREE;
|
|
} relocation_trampolin_entry_t;
|