Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Sutcliffe <ir0nh34d@users.sourceforge.net>2010-01-28 04:16:55 +0300
committerChris Sutcliffe <ir0nh34d@users.sourceforge.net>2010-01-28 04:16:55 +0300
commit6a697174588517ff690a5d8f094ec1fb6e5c658a (patch)
treed06142ab2fdbf214154140f09d427c57ec509584 /winsup/w32api
parent954515b0110ec67a36f0df4c7d3634959651dd2a (diff)
2010-01-26 Chris Sutcliffe <ir0n3h4d@users.sourceforge.net>
* include/shldisp.h (AUTOCOMPLETEOPTIONS): Add enum.
Diffstat (limited to 'winsup/w32api')
-rw-r--r--winsup/w32api/ChangeLog4
-rwxr-xr-xwinsup/w32api/include/shldisp.h13
2 files changed, 16 insertions, 1 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog
index 3bb834b89..fc962ad6a 100644
--- a/winsup/w32api/ChangeLog
+++ b/winsup/w32api/ChangeLog
@@ -1,3 +1,7 @@
+2010-01-26 Chris Sutcliffe <ir0n3h4d@users.sourceforge.net>
+
+ * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add enum.
+
2009-20-10 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
* include/shlobj.h (SHParseDisplayName): Fix definition.
diff --git a/winsup/w32api/include/shldisp.h b/winsup/w32api/include/shldisp.h
index 0b5d299c8..87dbffe6a 100755
--- a/winsup/w32api/include/shldisp.h
+++ b/winsup/w32api/include/shldisp.h
@@ -8,7 +8,18 @@
extern "C" {
#endif
-#define ACO_AUTOSUGGEST 0x01
+typedef enum tagAUTOCOMPLETEOPTIONS {
+ ACO_NONE = 0x00,
+ ACO_AUTOSUGGEST = 0x01,
+ ACO_AUTOAPPEND = 0x02,
+ ACO_SEARCH = 0x04,
+ ACO_FILTERPREFIXES = 0x08,
+ ACO_USETAB = 0x10,
+ ACO_UPDOWNKEYDROPSLIST = 0x20,
+ ACO_RTLREADING = 0x40,
+ ACO_WORD_FILTER = 0x80,
+ ACO_NOPREFIXFILTERING = 0x100
+} AUTOCOMPLETEOPTIONS;
#define INTERFACE IAutoComplete
DECLARE_INTERFACE_(IAutoComplete, IUnknown)