* src/lib/Evil.h:

include windows.h instead of windef.h
undefine PATH_MATH before defining it
* src/lib/dlfcn/dlfcn.c:
remove useless header file


SVN revision: 34763
This commit is contained in:
doursse 2008-06-07 06:38:54 +00:00 committed by doursse
parent 0cdcab6a5c
commit 2830a8186a
3 changed files with 16 additions and 5 deletions

View File

@ -1,3 +1,12 @@
2008-06-07 Vincent Torri <doursse at users dot sf dot net>
* src/lib/Evil.h:
include windows.h instead of windef.h
undefine PATH_MATH before defining it
* src/lib/dlfcn/dlfcn.c:
remove useless header file
2008-06-06 Vincent Torri <doursse at users dot sf dot net>
* src/lib/Evil.h:

View File

@ -22,7 +22,13 @@ extern "C" {
#endif
#include <windef.h>
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#undef WIN32_LEAN_AND_MEAN
#ifdef PATH_MAX
# undef PATH_MAX
#endif /* PATH_MAX */
#define PATH_MAX MAX_PATH

View File

@ -1,9 +1,5 @@
#include <stdlib.h>
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#undef WIN32_LEAN_AND_MEAN
#if defined(__CEGCC__) || defined(__MINGW32CE__)
# include <limits.h>
#endif /* __MINGW32CE__ */