mirror of
https://github.com/reactos/wine.git
synced 2024-12-03 09:20:56 +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)
|
||||
{
|
||||
FIXME("%p,%p: stub\n", iface, penum);
|
||||
return E_NOTIMPL;
|
||||
EnumVARIANT *enumvar = impl_from_IEnumVARIANT(iface);
|
||||
|
||||
TRACE("%p,%p\n", iface, penum);
|
||||
|
||||
return NewEnum_create(enumvar->folders, (IUnknown **)penum);
|
||||
}
|
||||
|
||||
static const struct IEnumVARIANTVtbl EnumVARIANT_vtbl =
|
||||
|
Loading…
Reference in New Issue
Block a user