include: Add FolderItems2 and FolderItems3.
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
ebfe169c43
commit
96072f4b6a
|
@ -349,6 +349,36 @@ interface FolderItems : IDispatch
|
|||
HRESULT _NewEnum( [out, retval] IUnknown **ppunk );
|
||||
}
|
||||
|
||||
/*****************************************************************************
|
||||
* FolderItems2 interface
|
||||
*/
|
||||
[
|
||||
uuid(c94f0ad0-f363-11d2-a327-00c04f8eec7f),
|
||||
oleautomation,
|
||||
dual
|
||||
]
|
||||
interface FolderItems2 : FolderItems
|
||||
{
|
||||
HRESULT InvokeVerbEx( [in, optional] VARIANT verb,
|
||||
[in, optional] VARIANT args );
|
||||
}
|
||||
|
||||
/*****************************************************************************
|
||||
* FolderItems3 interface
|
||||
*/
|
||||
[
|
||||
uuid(eaa7c309-bbec-49d5-821d-64d966cb667f),
|
||||
oleautomation,
|
||||
dual
|
||||
]
|
||||
interface FolderItems3 : FolderItems2
|
||||
{
|
||||
HRESULT Filter( [in] long flags, [in] BSTR spec );
|
||||
|
||||
[id(0), propget]
|
||||
HRESULT Verbs( [out, retval] FolderItemVerbs **ppfic );
|
||||
}
|
||||
|
||||
/*****************************************************************************
|
||||
* FolderItemVerb interface
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue