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

Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Dmitry Timoshkov 2018-04-20 16:37:15 +08:00 committed by Alexandre Julliard
parent a933e2e040
commit 9d113d353b
2 changed files with 8 additions and 4 deletions

View File

@ -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;
}

View File

@ -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();
}