From: Stefan Neis Date: Sun, 20 Jan 2002 21:50:56 +0000 (+0000) Subject: Fixed compilation problems with gcc on OS/2. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0fe5619d258bf80948047e7ff78611311d1e154d?ds=inline Fixed compilation problems with gcc on OS/2. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13710 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/defs.h b/include/wx/defs.h index 66ced8ccff..5b301ab132 100644 --- a/include/wx/defs.h +++ b/include/wx/defs.h @@ -1783,8 +1783,15 @@ typedef int (__stdcall *WXFARPROC)(); #if defined(__WXPM__) +#ifdef __EMX__ +/* Need a well-known type for WXFARPROC + below. MPARAM is typedef'ed too late. */ +#define WXWPARAM void * +#define WXLPARAM void * +#else #define WXWPARAM MPARAM #define WXLPARAM MPARAM +#endif #define RECT RECTL #define LOGFONT FATTRS #define LOWORD SHORT1FROMMP @@ -1842,6 +1849,9 @@ typedef struct tagLOGPALETTE // VA 3.0 for some reason needs base data types when typedefing a proc proto??? typedef void* (_System *WXFARPROC)(unsigned long, unsigned long, void*, void*); #else +#ifdef __EMX__ +#define _System +#endif typedef WXRESULT (_System *WXFARPROC)(WXHWND, WXMSGID, WXWPARAM, WXLPARAM); #endif