Commit 6b56dce1 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

mstask: Implement IEnumWorkItems::Skip().

parent c8408220
......@@ -209,9 +209,17 @@ static HRESULT WINAPI EnumWorkItems_Next(IEnumWorkItems *iface, ULONG count, LPW
static HRESULT WINAPI EnumWorkItems_Skip(IEnumWorkItems *iface, ULONG count)
{
EnumWorkItemsImpl *This = impl_from_IEnumWorkItems(iface);
FIXME("(%p)->(%u): stub\n", This, count);
return E_NOTIMPL;
LPWSTR *names;
ULONG fetched;
HRESULT hr;
TRACE("(%p)->(%u)\n", iface, count);
hr = EnumWorkItems_Next(iface, count, &names, &fetched);
if (SUCCEEDED(hr))
free_list(names, fetched);
return hr;
}
static HRESULT WINAPI EnumWorkItems_Reset(IEnumWorkItems *iface)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment