mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-21 02:45:00 +00:00
Initial symbol loading
This commit is contained in:
parent
d0931704ff
commit
cfa68f2f40
3 changed files with 29 additions and 1 deletions
|
@ -85,6 +85,7 @@ struct DynamicModuleInfo
|
|||
std::vector<ModuleInfo> import_modules;
|
||||
std::vector<ModuleInfo> export_modules;
|
||||
std::vector<LibraryInfo> import_libs;
|
||||
std::vector<LibraryInfo> export_libs;
|
||||
|
||||
std::string filename;//filename with absolute path
|
||||
|
||||
|
@ -99,7 +100,8 @@ public:
|
|||
Module* LoadModule(const std::string& elf_name);
|
||||
Module* FindModule(/*u32 id*/);
|
||||
void LoadModuleToMemory(Module* m);
|
||||
void LoadDynamicInfo(Module* program);
|
||||
void LoadDynamicInfo(Module* m);
|
||||
void LoadSymbols(Module* m);
|
||||
|
||||
private:
|
||||
std::vector<Module*> m_modules;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue