mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-21 02:45:00 +00:00
parsing DT_OS_HASHZ, DT_OS_STRTAB , DT_OS_STRSZ for dynamic loader
This commit is contained in:
parent
672e2b2d77
commit
8932be618b
3 changed files with 16 additions and 0 deletions
|
@ -19,6 +19,10 @@ struct Module
|
|||
struct DynamicModuleInfo
|
||||
{
|
||||
void* hash_table = nullptr;
|
||||
u64 hash_table_size = 0;
|
||||
|
||||
char* str_table = nullptr;
|
||||
u64 str_table_size = 0;
|
||||
};
|
||||
|
||||
class Linker
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue