summaryrefslogtreecommitdiff
path: root/src/libw32dll/wine/elfdll.c
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2002-01-07 02:17:10 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2002-01-07 02:17:10 +0000
commit0adff4cf87927e281295acdecc099c4c12084f80 (patch)
tree7f0defbcc4f66bd38b76ec3e4f543c8a825d2a4f /src/libw32dll/wine/elfdll.c
parent2d0d8c1d7c76a3537ed9bfa4509560c2749877d9 (diff)
downloadxine-lib-0adff4cf87927e281295acdecc099c4c12084f80.tar.gz
xine-lib-0adff4cf87927e281295acdecc099c4c12084f80.tar.bz2
acelpnet should work now (some files updated from mplayer cvs)
CVS patchset: 1360 CVS date: 2002/01/07 02:17:10
Diffstat (limited to 'src/libw32dll/wine/elfdll.c')
-rw-r--r--src/libw32dll/wine/elfdll.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/libw32dll/wine/elfdll.c b/src/libw32dll/wine/elfdll.c
index cc1e9099d..5902502ba 100644
--- a/src/libw32dll/wine/elfdll.c
+++ b/src/libw32dll/wine/elfdll.c
@@ -3,16 +3,16 @@
*
* Copyright 1999 Bertho A. Stultiens
*/
-#include "config.h"
+#include <config.h>
#ifdef HAVE_LIBDL
-#include "windef.h"
-#include "module.h"
-#include "heap.h"
-#include "elfdll.h"
-#include "debugtools.h"
-#include "winerror.h"
+#include <wine/windef.h>
+#include <wine/module.h>
+#include <wine/heap.h>
+#include <wine/elfdll.h>
+#include <wine/debugtools.h>
+#include <wine/winerror.h>
//DEFAULT_DEBUG_CHANNEL(elfdll)
@@ -43,7 +43,7 @@ extern void dump_exports(HMODULE hModule);
/*---------------- END HACKS ---------------*/
//char *extra_ld_library_path = "/usr/lib/win32";
-extern char* def_path;
+extern char* win32_def_path;
struct elfdll_image
{
@@ -73,7 +73,7 @@ void *ELFDLL_dlopen(const char *libname, int flags)
/* Now try to construct searches through our extra search-path */
namelen = strlen(libname);
- ldpath = def_path;
+ ldpath = win32_def_path;
while(ldpath && *ldpath)
{
int len;