diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-08-29 11:10:45 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-08-29 11:10:45 +0200 |
| commit | 4cdd46819fec91bdbdad4f7c50b665d43ec6f4a8 (patch) | |
| tree | e432705fc61a434e2405b2a6fda9611cdd4ea714 /src/include/elfloader.h | |
| parent | 0450371e282bd5c4dbbceaeca590626304609036 (diff) | |
| download | box64-4cdd46819fec91bdbdad4f7c50b665d43ec6f4a8.tar.gz box64-4cdd46819fec91bdbdad4f7c50b665d43ec6f4a8.zip | |
[TRACE] Improved trace on symbol name
Diffstat (limited to 'src/include/elfloader.h')
| -rw-r--r-- | src/include/elfloader.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/elfloader.h b/src/include/elfloader.h index edaf9771..cec7195d 100644 --- a/src/include/elfloader.h +++ b/src/include/elfloader.h @@ -90,6 +90,9 @@ int GetNeededVersionForLib(elfheader_t* h, const char* libname, const char* ver) void* ElfGetLocalSymbolStartEnd(elfheader_t* head, uintptr_t *offs, uintptr_t *sz, const char* symname, int* ver, const char** vername, int local, int* veropt); void* ElfGetGlobalSymbolStartEnd(elfheader_t* head, uintptr_t *offs, uintptr_t *sz, const char* symname, int* ver, const char** vername, int local, int* veropt); void* ElfGetWeakSymbolStartEnd(elfheader_t* head, uintptr_t *offs, uintptr_t *sz, const char* symname, int* ver, const char** vername, int local, int* veropt); +void* ElfGetSymbolStartEnd(elfheader_t* head, uintptr_t *offs, uintptr_t *end, const char* symname, int* ver, const char** vername, int local, int* veropt); +int ElfGetSymTabStartEnd(elfheader_t* head, uintptr_t *offs, uintptr_t *end, const char* symname); +int ElfGetSymTabStartEnd32(elfheader_t* head, uintptr_t *offs, uintptr_t *end, const char* symname); int ElfGetSymTabStartEnd64(elfheader_t* head, uintptr_t *offs, uintptr_t *end, const char* symname); void* GetNativeSymbolUnversioned(void* lib, const char* name); |