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:
parent
1b52d127bd
commit
3d635c060e
|
@ -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>
|
2010-01-26 Chris Sutcliffe <ir0n3h4d@users.sourceforge.net>
|
||||||
|
|
||||||
* include/shldisp.h (AUTOCOMPLETEOPTIONS): Add enum.
|
* include/shldisp.h (AUTOCOMPLETEOPTIONS): Add enum.
|
||||||
|
|
|
@ -17,8 +17,10 @@ typedef enum tagAUTOCOMPLETEOPTIONS {
|
||||||
ACO_USETAB = 0x10,
|
ACO_USETAB = 0x10,
|
||||||
ACO_UPDOWNKEYDROPSLIST = 0x20,
|
ACO_UPDOWNKEYDROPSLIST = 0x20,
|
||||||
ACO_RTLREADING = 0x40,
|
ACO_RTLREADING = 0x40,
|
||||||
|
#if (_WIN32_WINNT >= 0x0600)
|
||||||
ACO_WORD_FILTER = 0x80,
|
ACO_WORD_FILTER = 0x80,
|
||||||
ACO_NOPREFIXFILTERING = 0x100
|
ACO_NOPREFIXFILTERING = 0x100
|
||||||
|
#endif
|
||||||
} AUTOCOMPLETEOPTIONS;
|
} AUTOCOMPLETEOPTIONS;
|
||||||
|
|
||||||
#define INTERFACE IAutoComplete
|
#define INTERFACE IAutoComplete
|
||||||
|
|
Loading…
Reference in New Issue