include: Add IAutoCompleteDropDown declaration.
This commit is contained in:
parent
2097387e04
commit
edd3f2b34b
|
@ -1377,3 +1377,22 @@ interface ITaskbarList : IUnknown
|
||||||
HRESULT SetActiveAlt(
|
HRESULT SetActiveAlt(
|
||||||
[in] HWND hwnd);
|
[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();
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue