diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2022-10-19 22:59:07 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2022-10-19 22:59:19 +0200 |
| commit | d6b9df6ca260dbada8dac68ee6857d89005a810e (patch) | |
| tree | d36ec4d582307cf46056a58e2ce0696226d176af /src/include/wrappedlibs.h | |
| parent | 4fbeca0aa3f55f3569bb3212ca130d18d20c3dc3 (diff) | |
| download | box64-d6b9df6ca260dbada8dac68ee6857d89005a810e.tar.gz box64-d6b9df6ca260dbada8dac68ee6857d89005a810e.zip | |
Small refactor and simplification of library_t structure and box64context_t
Diffstat (limited to 'src/include/wrappedlibs.h')
| -rwxr-xr-x | src/include/wrappedlibs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/wrappedlibs.h b/src/include/wrappedlibs.h index 6cb350c4..5ff61939 100755 --- a/src/include/wrappedlibs.h +++ b/src/include/wrappedlibs.h @@ -10,8 +10,8 @@ typedef void (*wrappedlib_fini_t)(library_t * lib); typedef int (*wrappedlib_get_t)(library_t* lib, const char* name, uintptr_t *offs, uintptr_t *sz, int version, const char* vername, int local); void setNeededLibs(library_t* lib, int n, ...); -#define SETALT(A) lib->altmy = strdup(#A) -#define SETALTPREFIX(A) lib->priv.w.altprefix = strdup(A) +#define SETALT(A) lib->w.altmy = strdup(#A) +#define SETALTPREFIX(A) lib->w.altprefix = strdup(A) typedef struct wrappedlib_s { const char* name; |