diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2001-11-07 02:15:24 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2001-11-07 02:15:24 +0000 |
commit | 258777b8039c78817611fefe656cef7ec8c79ef1 (patch) | |
tree | 1e837271e500be1175d80c051adfdbd2a70b8044 /src/libw32dll/wine/elfdll.c | |
parent | 4eecee172b445460e94271f69b70ffc6330c47d4 (diff) | |
download | xine-lib-258777b8039c78817611fefe656cef7ec8c79ef1.tar.gz xine-lib-258777b8039c78817611fefe656cef7ec8c79ef1.tar.bz2 |
- update win32 loader
- dynamic buffers fixes a lot of audio problems
CVS patchset: 974
CVS date: 2001/11/07 02:15:24
Diffstat (limited to 'src/libw32dll/wine/elfdll.c')
-rw-r--r-- | src/libw32dll/wine/elfdll.c | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/src/libw32dll/wine/elfdll.c b/src/libw32dll/wine/elfdll.c index b8fe03d74..cc1e9099d 100644 --- a/src/libw32dll/wine/elfdll.c +++ b/src/libw32dll/wine/elfdll.c @@ -7,22 +7,19 @@ #ifdef HAVE_LIBDL -#include <string.h> -#include <ctype.h> -#include <stdlib.h> - -#include "wine/config.h" -#include "wine/windef.h" -//#include "wine/global.h" -//#include "wine/process.h" -#include "wine/module.h" -#include "wine/heap.h" -#include "wine/elfdll.h" -#include "wine/debugtools.h" -#include "wine/winerror.h" +#include "windef.h" +#include "module.h" +#include "heap.h" +#include "elfdll.h" +#include "debugtools.h" +#include "winerror.h" //DEFAULT_DEBUG_CHANNEL(elfdll) +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <ctype.h> #include <dlfcn.h> struct modref_list_t; @@ -40,6 +37,11 @@ modref_list; extern modref_list* local_wm; +/*------------------ HACKS -----------------*/ +extern DWORD fixup_imports(WINE_MODREF *wm); +extern void dump_exports(HMODULE hModule); +/*---------------- END HACKS ---------------*/ + //char *extra_ld_library_path = "/usr/lib/win32"; extern char* def_path; |