mirror of
https://github.com/reactos/wine.git
synced 2024-12-04 09:53:54 +00:00
taskschd: Implement IEnumVARIANT::Clone for a folder collection.
This commit is contained in:
parent
d33c0e14ae
commit
b5ed10c5ca
@ -438,8 +438,11 @@ static HRESULT WINAPI enumvar_Reset(IEnumVARIANT *iface)
|
|||||||
|
|
||||||
static HRESULT WINAPI enumvar_Clone(IEnumVARIANT *iface, IEnumVARIANT **penum)
|
static HRESULT WINAPI enumvar_Clone(IEnumVARIANT *iface, IEnumVARIANT **penum)
|
||||||
{
|
{
|
||||||
FIXME("%p,%p: stub\n", iface, penum);
|
EnumVARIANT *enumvar = impl_from_IEnumVARIANT(iface);
|
||||||
return E_NOTIMPL;
|
|
||||||
|
TRACE("%p,%p\n", iface, penum);
|
||||||
|
|
||||||
|
return NewEnum_create(enumvar->folders, (IUnknown **)penum);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct IEnumVARIANTVtbl EnumVARIANT_vtbl =
|
static const struct IEnumVARIANTVtbl EnumVARIANT_vtbl =
|
||||||
|
Loading…
Reference in New Issue
Block a user