Module: wine Branch: master Commit: edd3f2b34b56d0ff0e2b9c9865eea445fa3d16aa URL: http://source.winehq.org/git/wine.git/?a=commit;h=edd3f2b34b56d0ff0e2b9c9865...
Author: Mikołaj Zalewski mikolaj@zalewski.pl Date: Wed Sep 17 20:52:41 2008 +0200
include: Add IAutoCompleteDropDown declaration.
---
include/shobjidl.idl | 19 +++++++++++++++++++ 1 files changed, 19 insertions(+), 0 deletions(-)
diff --git a/include/shobjidl.idl b/include/shobjidl.idl index 7a4bd88..95e532c 100644 --- a/include/shobjidl.idl +++ b/include/shobjidl.idl @@ -1377,3 +1377,22 @@ interface ITaskbarList : IUnknown HRESULT SetActiveAlt( [in] HWND hwnd); } + +/***************************************************************************** + * IAutoCompleteDropDown interface + */ +[ + object, + uuid(3CD141F4-3C6A-11d2-BCAA-00C04FD929DB), + pointer_default(unique) +] +interface IAutoCompleteDropDown : IUnknown +{ +cpp_quote("#define ACDD_VISIBLE 0x0001") + + HRESULT GetDropDownStatus( + [out] DWORD *pdwFlags, + [out, string] LPWSTR *ppwszString); + + HRESULT ResetEnumerator(); +}