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:
parent
7af206c1c4
commit
634d3cc8d8
@ -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__
|
||||
|
Loading…
Reference in New Issue
Block a user