From b1b558d244c58af6a5c56acdd0307533b51cc85c Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Mon, 9 May 2022 20:11:03 +0200 Subject: Small change to avoid wlib_t declaration in wrappedlibs.h (from box86) --- src/include/wrappedlibs.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/include') 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) -- cgit 1.4.1