diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-07-16 10:42:00 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-07-16 10:42:00 +0200 |
| commit | 0003c72fc798cdc4048e3e8c690bb389cb9c4d83 (patch) | |
| tree | ceec353a7fff74635021e6b356e2eb93d7a9f848 /src/include | |
| parent | 915f7cbd54e1574ca989689cf504c6ea07c859a4 (diff) | |
| download | box64-0003c72fc798cdc4048e3e8c690bb389cb9c4d83.tar.gz box64-0003c72fc798cdc4048e3e8c690bb389cb9c4d83.zip | |
Fixed some warnings/build errors
Diffstat (limited to 'src/include')
| -rwxr-xr-x | src/include/box64context.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/box64context.h b/src/include/box64context.h index e87aa0e3..aa8c95b6 100755 --- a/src/include/box64context.h +++ b/src/include/box64context.h @@ -23,6 +23,7 @@ typedef struct bridge_s bridge_t; typedef struct dlprivate_s dlprivate_t; typedef struct kh_symbolmap_s kh_symbolmap_t; typedef struct kh_defaultversion_s kh_defaultversion_t; +typedef struct kh_mapsymbols_s kh_mapsymbols_t; typedef struct library_s library_t; typedef struct linkmap_s linkmap_t; typedef struct kh_threadstack_s kh_threadstack_t; @@ -117,7 +118,7 @@ typedef struct box64context_s { lib_t *maplib; // lib and symbols handling lib_t *local_maplib; // libs and symbols openned has local (only collection of libs, no symbols) dic_t *versym; // dictionnary of versioned symbols - kh_symbolmap_t *globdata; // GLOBAL_DAT relocation for COPY mapping in main elf + kh_mapsymbols_t *globdata; // GLOBAL_DAT relocation for COPY mapping in main elf kh_threadstack_t *stacksizes; // stack sizes attributes for thread (temporary) bridge_t *system; // other bridges |