- Changed define from WIN32 to _WIN32 to also support 64-bit windows platforms

This commit is contained in:
Paul Bakker 2011-04-24 15:30:07 +00:00
parent 2eee902be3
commit 494c0b8d36
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@
#define _CRT_SECURE_NO_DEPRECATE 1
#endif
#if defined(WIN32)
#if defined(_WIN32)
#include <windows.h>
#include <io.h>
#else

View File

@ -28,7 +28,7 @@
#define _CRT_SECURE_NO_DEPRECATE 1
#endif
#if defined(WIN32)
#if defined(_WIN32)
#include <windows.h>
#include <io.h>
#else