From: Vadim Zeitlin Date: Fri, 10 Dec 1999 19:46:12 +0000 (+0000) Subject: compilation fix for headers without _WIN32_IE X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/036bc7d9e17e85394856f87355aa78f9caab74c3 compilation fix for headers without _WIN32_IE git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4894 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/app.cpp b/src/msw/app.cpp index 2bb095e842..9c46030706 100644 --- a/src/msw/app.cpp +++ b/src/msw/app.cpp @@ -85,7 +85,6 @@ #if (defined(__WIN95__) && !defined(__GNUWIN32__)) || defined(__TWIN32__) || defined(wxUSE_NORLANDER_HEADERS) #include - #include #endif #include "wx/msw/msvcrt.h" @@ -111,6 +110,10 @@ #define _WIN32_IE 0x0200 #endif +#if _WIN32_IE >= 0x0300 + #include +#endif + // --------------------------------------------------------------------------- // global variables // ---------------------------------------------------------------------------