added test for _WIN32

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5554 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2000-01-20 22:36:48 +00:00
parent 7af206c1c4
commit 634d3cc8d8

View File

@ -164,9 +164,11 @@
#endif
#ifdef __WXMSW__
// wxWindows checks for WIN32, not __WIN32__
#if ((defined(WIN32) || defined(__NT__)) && !defined(__WIN32__) && !defined(__WXSTUBS__))
#define __WIN32__
#if defined(_WIN32) || defined(WIN32) || defined(__NT__)
#ifndef __WIN32__
#define __WIN32__
#endif
#endif
#endif
#ifdef __WXWINE__