about summary refs log tree commit diff stats
path: root/src/include/wrappedlibs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/wrappedlibs.h')
-rwxr-xr-xsrc/include/wrappedlibs.h3
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)