From: Mattia Barbon Date: Sun, 19 Jan 2003 10:10:54 +0000 (+0000) Subject: Patch [669508] Define Win32 symbols for CW in platform.h X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a203834e6b662f61fa0e973783687f3eb890e2be Patch [669508] Define Win32 symbols for CW in platform.h from Igor Mikolic-Torreira git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18821 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/platform.h b/include/wx/platform.h index 68fe507d82..f619504c01 100644 --- a/include/wx/platform.h +++ b/include/wx/platform.h @@ -14,6 +14,21 @@ #ifndef _WX_PLATFORM_H_ #define _WX_PLATFORM_H_ + +/* + Codewarrior doesn't define any Windows symbols until some headers + are included +*/ +#if __MWERKS__ + #include + #if defined(WIN32) || defined(_WIN32) + #ifndef WINVER + #define WINVER 0x0400 + #endif + #endif +#endif + + /* first define Windows symbols if they're not defined on the command line: we can autodetect everything we need if _WIN32 is defined