2020-04-28 14:43:07 +02:00
|
|
|
#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 {
|
2020-05-03 00:06:11 +02:00
|
|
|
uint32_t id;
|
2020-04-28 14:43:07 +02:00
|
|
|
uint32_t trampolin[4];
|
|
|
|
RelocationTrampolinStatus status = RELOC_TRAMP_FREE;
|
|
|
|
} relocation_trampolin_entry_t;
|