]> sourceware.org Git - newlib-cygwin.git/commitdiff
2010-01-26 Chris Sutcliffe <ir0n3h4d@users.sourceforge.net>
authorChris Sutcliffe <ir0nh34d@users.sourceforge.net>
Thu, 28 Jan 2010 01:16:55 +0000 (01:16 +0000)
committerChris Sutcliffe <ir0nh34d@users.sourceforge.net>
Thu, 28 Jan 2010 01:16:55 +0000 (01:16 +0000)
        * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add enum.

winsup/w32api/ChangeLog
winsup/w32api/include/shldisp.h

index 3bb834b89e5129b730e06c8c57d159c5e1096c5f..fc962ad6a82d7aee7982ce9d6cd3aeee542340bd 100644 (file)
@@ -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.
index 0b5d299c888cc9d68a03050b771a4747cb9086ec..87dbffe6a9df313fb8642cb5cedb2853fd580c84 100755 (executable)
@@ -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)
This page took 0.043147 seconds and 5 git commands to generate.