diff options
| author | rajdakin <rajdakin@gmail.com> | 2021-04-09 17:52:25 +0200 |
|---|---|---|
| committer | rajdakin <rajdakin@gmail.com> | 2021-04-09 17:52:25 +0200 |
| commit | 009bb94f17803dff459b812d7314e300a1b31e1e (patch) | |
| tree | c9f91b7f6a19ad192ec0c3e371fe83f36ae91234 /src/librarian | |
| parent | fcfd90b86fc5328c6c5c61e2921416c3cc8adba2 (diff) | |
| download | box64-009bb94f17803dff459b812d7314e300a1b31e1e.tar.gz box64-009bb94f17803dff459b812d7314e300a1b31e1e.zip | |
Changed missed unwanted "box86"
Diffstat (limited to 'src/librarian')
| -rwxr-xr-x | src/librarian/library_private.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/librarian/library_private.h b/src/librarian/library_private.h index 78a7da94..0a2842d9 100755 --- a/src/librarian/library_private.h +++ b/src/librarian/library_private.h @@ -35,7 +35,7 @@ typedef struct wlib_s { void* lib; // dlopen result void* priv; // actual private void* p2; // second private - void* box64lib; // ref to the dlopen on box86 itself from context + void* box64lib; // ref to the dlopen on box64 itself from context char* altprefix; // if function names are mangled.. int needed; char** neededlibs; @@ -73,7 +73,7 @@ typedef struct library_s { kh_datamap_t *datamap; kh_datamap_t *wdatamap; kh_datamap_t *mydatamap; - char *altmy; // to avoid duplicate symbol, like with SDL1/SDL2 + char *altmy; // to avoid duplicate symbol, like with SDL1/SDL2 needed_libs_t needed; lib_t *maplib; // local maplib, for dlopen'd library with LOCAL binding (most of the dlopen) } library_t; @@ -98,4 +98,4 @@ typedef struct map_onedata_s { int getSymbolInMaps(library_t*lib, const char* name, int noweak, uintptr_t *addr, uint32_t *size); // Add bridges to functions -#endif //__LIBRARY_PRIVATE_H_ \ No newline at end of file +#endif //__LIBRARY_PRIVATE_H_ |