compilation fix for cygwin/old mingw32 (patch 446700)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11258 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
7ba5a665ac
commit
733e8cf36e
@ -69,6 +69,28 @@
|
|||||||
#define CFM_BACKCOLOR 0x04000000
|
#define CFM_BACKCOLOR 0x04000000
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// cygwin does not have these defined for richedit
|
||||||
|
#ifndef ENM_LINK
|
||||||
|
#define ENM_LINK 0x04000000
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef EM_AUTOURLDETECT
|
||||||
|
#define EM_AUTOURLDETECT (WM_USER + 91)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef EN_LINK
|
||||||
|
#define EN_LINK 0x070b
|
||||||
|
|
||||||
|
typedef struct _enlink
|
||||||
|
{
|
||||||
|
NMHDR nmhdr;
|
||||||
|
UINT msg;
|
||||||
|
WPARAM wParam;
|
||||||
|
LPARAM lParam;
|
||||||
|
CHARRANGE chrg;
|
||||||
|
} ENLINK;
|
||||||
|
#endif // ENLINK
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
// private classes
|
// private classes
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user