Commit 00bcbe8a authored by Gildas Bazin's avatar Gildas Bazin

* src/misc/modules.c: MSVC compilation fix.

parent 49ee8d5b
...@@ -39,10 +39,6 @@ ...@@ -39,10 +39,6 @@
#ifdef HAVE_DIRENT_H #ifdef HAVE_DIRENT_H
# include <dirent.h> # include <dirent.h>
#elif defined( UNDER_CE )
# include <windows.h> /* GetFileAttributes() */
#else
# include "../extras/dirent.h"
#endif #endif
#ifdef HAVE_SYS_TYPES_H #ifdef HAVE_SYS_TYPES_H
...@@ -124,7 +120,7 @@ ...@@ -124,7 +120,7 @@
#endif #endif
#include "network.h" #include "network.h"
#if defined( WIN32) || defined( UNDER_CE ) #if defined( WIN32 ) || defined( UNDER_CE )
/* Avoid name collisions */ /* Avoid name collisions */
# define LoadModule(a,b,c) _LoadModule(a,b,c) # define LoadModule(a,b,c) _LoadModule(a,b,c)
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment