include: Add IAutoCompleteDropDown declaration.

oldstable
Mikołaj Zalewski 2008-09-17 20:52:41 +02:00 committed by Alexandre Julliard
parent 2097387e04
commit edd3f2b34b
1 changed files with 19 additions and 0 deletions

View File

@ -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();
}