From 96506d1d5826c388c94ce36bbafac516fb8cdbfd Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 5 Nov 2007 13:35:24 +0000 Subject: [PATCH] compilation fix for stuff missing from mingw32 headers git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49641 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/textentry.cpp | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/src/msw/textentry.cpp b/src/msw/textentry.cpp index e868fea193..e3afd0eae0 100644 --- a/src/msw/textentry.cpp +++ b/src/msw/textentry.cpp @@ -24,6 +24,7 @@ #endif #ifndef WX_PRECOMP + #include "wx/arrstr.h" #include "wx/string.h" #endif // WX_PRECOMP @@ -34,10 +35,6 @@ #include "wx/msw/private.h" -#ifndef SHACF_FILESYS_ONLY - #define SHACF_FILESYS_ONLY 0x00000010 -#endif - #define GetEditHwnd() ((HWND)(GetEditHWND())) // ---------------------------------------------------------------------------- @@ -49,6 +46,19 @@ #include "wx/msw/ole/oleutils.h" #include +#if defined(__MINGW32__) + // needed for IID_IAutoComplete, IID_IAutoComplete2 and ACO_AUTOSUGGEST + #include +#endif + +#ifndef ACO_UPDOWNKEYDROPSLIST + #define ACO_UPDOWNKEYDROPSLIST 0x20 +#endif + +#ifndef SHACF_FILESYS_ONLY + #define SHACF_FILESYS_ONLY 0x00000010 +#endif + DEFINE_GUID(CLSID_AutoComplete, 0x00bb2763, 0x6a77, 0x11d0, 0xa5, 0x35, 0x00, 0xc0, 0x4f, 0xd7, 0xd0, 0x62); -- 2.47.2