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
This commit is contained in:
Vadim Zeitlin
2001-08-25 20:12:58 +00:00
parent b94e73ae6a
commit ebb0781f91

View File

@@ -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 // this defines a CASTWNDPROC macro which casts a pointer to the type of a
// window proc // window proc
#if defined(STRICT) || defined(__GNUC__)
#if defined(__GNUWIN32_OLD__) && !defined(__CYGWIN10__) typedef WNDPROC WndProcCast;
#define CASTWNDPROC (long unsigned)
#else #else
#if defined(STRICT) || defined(__GNUC__) typedef FARPROC WndProcCast;
typedef WNDPROC WndProcCast; #endif
#else
typedef FARPROC WndProcCast; #define CASTWNDPROC (WndProcCast)
#endif
#define CASTWNDPROC (WndProcCast)
#endif // __GNUWIN32_OLD__
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
// some stuff for old Windows versions (FIXME: what does it do here??) // some stuff for old Windows versions (FIXME: what does it do here??)