2010-01-26 Chris Sutcliffe <ir0n3h4d@users.sourceforge.net>

* include/shldisp.h (AUTOCOMPLETEOPTIONS): Add enum.
This commit is contained in:
Chris Sutcliffe 2010-01-28 01:16:55 +00:00
parent 954515b011
commit 6a69717458
2 changed files with 16 additions and 1 deletions

View 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.

View File

@ -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)