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

* include/shldisp.h (AUTOCOMPLETEOPTIONS): Add version guard around
        ACO_WORD_FILTER and ACO_NOPREFIXFILTERING.
This commit is contained in:
Chris Sutcliffe 2010-01-29 00:41:58 +00:00
parent 1b52d127bd
commit 3d635c060e
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2010-01-26 Chris Sutcliffe <ir0n3h4d@users.sourceforge.net>
* include/shldisp.h (AUTOCOMPLETEOPTIONS): Add version guard around
ACO_WORD_FILTER and ACO_NOPREFIXFILTERING.
2010-01-26 Chris Sutcliffe <ir0n3h4d@users.sourceforge.net>
* include/shldisp.h (AUTOCOMPLETEOPTIONS): Add enum.

View File

@ -17,8 +17,10 @@ typedef enum tagAUTOCOMPLETEOPTIONS {
ACO_USETAB = 0x10,
ACO_UPDOWNKEYDROPSLIST = 0x20,
ACO_RTLREADING = 0x40,
#if (_WIN32_WINNT >= 0x0600)
ACO_WORD_FILTER = 0x80,
ACO_NOPREFIXFILTERING = 0x100
#endif
} AUTOCOMPLETEOPTIONS;
#define INTERFACE IAutoComplete