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:
parent
a933e2e040
commit
9d113d353b
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue