BUG: fix build on mingw

This commit is contained in:
Bill Hoffman 2005-04-08 08:34:22 -04:00
parent 98e1bc3efa
commit a5be6b8406
1 changed files with 5 additions and 0 deletions

View File

@ -46,6 +46,11 @@
#if defined(_WIN32) && (defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__))
#include <io.h>
// This is to get GetLongPathName which is not really only
// in windows > 0x0500, but there is a bug in the mingw winbase.h file
#ifdef __MINGW32__
#define WINVER 0x0500
#endif
#include <windows.h>
#include <direct.h>
#define _unlink unlink