mirror of
https://github.com/wiiu-env/WiiUModuleSystem.git
synced 2024-11-25 11:16:52 +01:00
WUMS 0.3 - store up to 50000 function symbols inside the global module struct
This commit is contained in:
parent
fd21c46d8c
commit
5da3dd5a77
4
Makefile
4
Makefile
@ -2,8 +2,8 @@ TOPDIR ?= $(CURDIR)
|
|||||||
include $(TOPDIR)/share/wums_rules
|
include $(TOPDIR)/share/wums_rules
|
||||||
|
|
||||||
export WUMS_MAJOR := 0
|
export WUMS_MAJOR := 0
|
||||||
export WUMS_MINOR := 2
|
export WUMS_MINOR := 3
|
||||||
export WUMS_PATCH := 1
|
export WUMS_PATCH := 0
|
||||||
|
|
||||||
VERSION := $(WUMS_MAJOR).$(WUMS_MINOR).$(WUMS_PATCH)
|
VERSION := $(WUMS_MAJOR).$(WUMS_MINOR).$(WUMS_PATCH)
|
||||||
|
|
||||||
|
@ -30,6 +30,7 @@ extern "C" {
|
|||||||
#define MAXIMUM_MODULE_PATH_NAME_LENGTH 256
|
#define MAXIMUM_MODULE_PATH_NAME_LENGTH 256
|
||||||
#define MAXIMUM_EXPORT_MODULE_NAME_LENGTH 51
|
#define MAXIMUM_EXPORT_MODULE_NAME_LENGTH 51
|
||||||
|
|
||||||
|
#define FUNCTION_SYMBOL_LIST_LENGTH 50000
|
||||||
#define DYN_LINK_RELOCATION_LIST_LENGTH 500
|
#define DYN_LINK_RELOCATION_LIST_LENGTH 500
|
||||||
#define EXPORT_ENTRY_LIST_LENGTH 100
|
#define EXPORT_ENTRY_LIST_LENGTH 100
|
||||||
#define HOOK_ENTRY_LIST_LENGTH 20
|
#define HOOK_ENTRY_LIST_LENGTH 20
|
||||||
@ -39,6 +40,12 @@ typedef struct hook_data_t {
|
|||||||
uint32_t target;
|
uint32_t target;
|
||||||
} hook_data_t;
|
} hook_data_t;
|
||||||
|
|
||||||
|
typedef struct module_function_symbol_data_t {
|
||||||
|
char* name;
|
||||||
|
void* address;
|
||||||
|
uint32_t size;
|
||||||
|
} module_function_symbol_data_t;
|
||||||
|
|
||||||
typedef struct module_information_single_t {
|
typedef struct module_information_single_t {
|
||||||
char path[MAXIMUM_MODULE_PATH_NAME_LENGTH]; // Path where the module is stored
|
char path[MAXIMUM_MODULE_PATH_NAME_LENGTH]; // Path where the module is stored
|
||||||
dyn_linking_relocation_entry_t linking_entries[DYN_LINK_RELOCATION_LIST_LENGTH];
|
dyn_linking_relocation_entry_t linking_entries[DYN_LINK_RELOCATION_LIST_LENGTH];
|
||||||
@ -55,16 +62,20 @@ typedef struct module_information_single_t {
|
|||||||
uint32_t endAddress;
|
uint32_t endAddress;
|
||||||
uint8_t skipEntrypoint;
|
uint8_t skipEntrypoint;
|
||||||
uint8_t initBeforeRelocationDoneHook;
|
uint8_t initBeforeRelocationDoneHook;
|
||||||
|
module_function_symbol_data_t * function_symbol_entries;
|
||||||
|
uint32_t number_used_function_symbols;
|
||||||
} module_information_single_t;
|
} module_information_single_t;
|
||||||
|
|
||||||
#define MAXIMUM_MODULES 32
|
#define MAXIMUM_MODULES 32
|
||||||
#define MODULE_INFORMATION_VERSION 0x00000005
|
#define MODULE_INFORMATION_VERSION 0x00000006
|
||||||
|
|
||||||
typedef struct module_information_t {
|
typedef struct module_information_t {
|
||||||
uint32_t version;
|
uint32_t version;
|
||||||
int32_t number_used_modules; // Number of used function. Maximum is MAXIMUM_MODULES
|
int32_t number_used_modules; // Number of used function. Maximum is MAXIMUM_MODULES
|
||||||
dyn_linking_relocation_data_t linking_data;
|
dyn_linking_relocation_data_t linking_data;
|
||||||
relocation_trampolin_entry_t trampolines[DYN_LINK_TRAMPOLIN_LIST_LENGTH];
|
relocation_trampolin_entry_t trampolines[DYN_LINK_TRAMPOLIN_LIST_LENGTH];
|
||||||
|
module_function_symbol_data_t function_symbols[FUNCTION_SYMBOL_LIST_LENGTH];
|
||||||
|
uint32_t number_used_function_symbols;
|
||||||
module_information_single_t module_data[MAXIMUM_MODULES];
|
module_information_single_t module_data[MAXIMUM_MODULES];
|
||||||
} module_information_t;
|
} module_information_t;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user