X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/04ef50df3a0fa3c343800c554e609f98fc7575cc..0cecad314c1052c1e3545f431af4228b3c737033:/include/wx/msw/private.h diff --git a/include/wx/msw/private.h b/include/wx/msw/private.h index 20b4d94676..3a76dd883b 100644 --- a/include/wx/msw/private.h +++ b/include/wx/msw/private.h @@ -14,6 +14,10 @@ #ifndef _WX_PRIVATE_H_ #define _WX_PRIVATE_H_ +#ifndef STRICT + #define STRICT 1 +#endif + #include #ifdef __WXMICROWIN__ @@ -72,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??)