diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2022-05-09 20:11:03 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2022-05-09 20:11:03 +0200 |
| commit | b1b558d244c58af6a5c56acdd0307533b51cc85c (patch) | |
| tree | bd80e92ee4315f952973e87839491b53a852fcc3 /src/include | |
| parent | 6ef734960abfb83501cf2236ae41624c0375f570 (diff) | |
| download | box64-b1b558d244c58af6a5c56acdd0307533b51cc85c.tar.gz box64-b1b558d244c58af6a5c56acdd0307533b51cc85c.zip | |
Small change to avoid wlib_t declaration in wrappedlibs.h (from box86)
Diffstat (limited to 'src/include')
| -rwxr-xr-x | src/include/wrappedlibs.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/wrappedlibs.h b/src/include/wrappedlibs.h index d593f3f4..6cb350c4 100755 --- a/src/include/wrappedlibs.h +++ b/src/include/wrappedlibs.h @@ -4,13 +4,12 @@ typedef struct library_s library_t; typedef struct box64context_s box64context_t; -typedef struct wlib_s wlib_t; typedef int (*wrappedlib_init_t)(library_t * lib, box64context_t* box64); // 0 = success 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(wlib_t* wlib, int n, ...); +void setNeededLibs(library_t* lib, int n, ...); #define SETALT(A) lib->altmy = strdup(#A) #define SETALTPREFIX(A) lib->priv.w.altprefix = strdup(A) |