WXFARPROC prototyped as `typedef int (__stdcall *WXFARPROC)()' (does Borland

understand __stdcall?) to make the program compile with VC++


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@482 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 1998-08-08 22:08:04 +00:00
parent f83528074b
commit b039c367cd

View File

@ -426,7 +426,8 @@ typedef void (*wxFunction) (wxObject&, wxEvent&);
#define wxREADONLY wxTE_READONLY
#define wxEDITABLE 0
// #define wxTE_RICHTEXT 0x0020
// MSW-only
#define wxTE_RICHTEXT 0x0020
/*
* wxComboBox style flags
@ -883,7 +884,7 @@ typedef unsigned long WXHCONV;
typedef void * WXDRAWITEMSTRUCT;
typedef void * WXMEASUREITEMSTRUCT;
typedef void * WXLPCREATESTRUCT;
typedef int (*WXFARPROC)();
typedef int (__stdcall *WXFARPROC)();
#endif