From: Włodzimierz Skiba Date: Thu, 6 Jan 2005 12:17:37 +0000 (+0000) Subject: eVC3 warning fix. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/61f824b8198b6c916adc25f58640a22c9d523bf0 eVC3 warning fix. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31258 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/extended.c b/src/common/extended.c index 9e2b55f9d9..863e4878a2 100644 --- a/src/common/extended.c +++ b/src/common/extended.c @@ -8,6 +8,12 @@ *****************************************************************************/ +#if defined(_WIN32_WCE) && (_WIN32_WCE < 400) + // eVC3 cause warnings in its own headers: stdlib.h and winnt.h + #pragma warning (disable:4115) + #pragma warning (disable:4214) +#endif + #include #include #include @@ -15,6 +21,11 @@ #include #include "wx/defs.h" +#if defined(_WIN32_WCE) && (_WIN32_WCE < 400) + #pragma warning (default:4115) + #pragma warning (default:4214) +#endif + #if wxUSE_APPLE_IEEE #include "wx/math.h"