From ebb0781f914375f141d8d93bdc0ca62b2d08035e Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 25 Aug 2001 20:12:58 +0000 Subject: [PATCH] are there still versions of gcc around which require casting WndProc to long? I don't think so... git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11481 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/msw/private.h | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/include/wx/msw/private.h b/include/wx/msw/private.h index 3193fa73c3..3a76dd883b 100644 --- a/include/wx/msw/private.h +++ b/include/wx/msw/private.h @@ -76,17 +76,13 @@ WXDLLEXPORT_DATA(extern HFONT) wxSTATUS_LINE_FONT; // this defines a CASTWNDPROC macro which casts a pointer to the type of a // window proc - -#if defined(__GNUWIN32_OLD__) && !defined(__CYGWIN10__) - #define CASTWNDPROC (long unsigned) +#if defined(STRICT) || defined(__GNUC__) + typedef WNDPROC WndProcCast; #else - #if defined(STRICT) || defined(__GNUC__) - typedef WNDPROC WndProcCast; - #else - typedef FARPROC WndProcCast; - #endif - #define CASTWNDPROC (WndProcCast) -#endif // __GNUWIN32_OLD__ + typedef FARPROC WndProcCast; +#endif + +#define CASTWNDPROC (WndProcCast) // --------------------------------------------------------------------------- // some stuff for old Windows versions (FIXME: what does it do here??) -- 2.47.2