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 ...@@ -209,9 +209,17 @@ static HRESULT WINAPI EnumWorkItems_Next(IEnumWorkItems *iface, ULONG count, LPW
static HRESULT WINAPI EnumWorkItems_Skip(IEnumWorkItems *iface, ULONG count) static HRESULT WINAPI EnumWorkItems_Skip(IEnumWorkItems *iface, ULONG count)
{ {
EnumWorkItemsImpl *This = impl_from_IEnumWorkItems(iface); LPWSTR *names;
FIXME("(%p)->(%u): stub\n", This, count); ULONG fetched;
return E_NOTIMPL; 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) 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