Commit 9d113d35 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

mstask: ITask::GetErrorRetryInterval() is not implemented.

parent a933e2e0
......@@ -400,11 +400,9 @@ static HRESULT WINAPI MSTASK_ITask_SetErrorRetryInterval(
return E_NOTIMPL;
}
static HRESULT WINAPI MSTASK_ITask_GetErrorRetryInterval(
ITask* iface,
WORD *pwRetryInterval)
static HRESULT WINAPI MSTASK_ITask_GetErrorRetryInterval(ITask *iface, WORD *interval)
{
FIXME("(%p, %p): stub\n", iface, pwRetryInterval);
TRACE("(%p, %p)\n", iface, interval);
return E_NOTIMPL;
}
......
......@@ -541,6 +541,12 @@ static void test_task_state(void)
hr = ITask_GetErrorRetryCount(test_task, &val1);
ok(hr == E_NOTIMPL, "got %#x\n", hr);
if (0) /* crashes under Windows */
hr = ITask_GetErrorRetryInterval(test_task, NULL);
hr = ITask_GetErrorRetryInterval(test_task, &val1);
ok(hr == E_NOTIMPL, "got %#x\n", hr);
cleanup_task();
}
......
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