Commit 0184dea2 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

qmgr: Improve a couple of stubs.

parent 1d8dbeff
...@@ -382,32 +382,34 @@ static HRESULT WINAPI BITS_IBackgroundCopyJob_SetMinimumRetryDelay( ...@@ -382,32 +382,34 @@ static HRESULT WINAPI BITS_IBackgroundCopyJob_SetMinimumRetryDelay(
IBackgroundCopyJob2 *iface, IBackgroundCopyJob2 *iface,
ULONG Seconds) ULONG Seconds)
{ {
FIXME("Not implemented\n"); FIXME("%u\n", Seconds);
return E_NOTIMPL; return S_OK;
} }
static HRESULT WINAPI BITS_IBackgroundCopyJob_GetMinimumRetryDelay( static HRESULT WINAPI BITS_IBackgroundCopyJob_GetMinimumRetryDelay(
IBackgroundCopyJob2 *iface, IBackgroundCopyJob2 *iface,
ULONG *Seconds) ULONG *Seconds)
{ {
FIXME("Not implemented\n"); FIXME("%p\n", Seconds);
return E_NOTIMPL; *Seconds = 30;
return S_OK;
} }
static HRESULT WINAPI BITS_IBackgroundCopyJob_SetNoProgressTimeout( static HRESULT WINAPI BITS_IBackgroundCopyJob_SetNoProgressTimeout(
IBackgroundCopyJob2 *iface, IBackgroundCopyJob2 *iface,
ULONG Seconds) ULONG Seconds)
{ {
FIXME("Not implemented\n"); FIXME("%u\n", Seconds);
return E_NOTIMPL; return S_OK;
} }
static HRESULT WINAPI BITS_IBackgroundCopyJob_GetNoProgressTimeout( static HRESULT WINAPI BITS_IBackgroundCopyJob_GetNoProgressTimeout(
IBackgroundCopyJob2 *iface, IBackgroundCopyJob2 *iface,
ULONG *Seconds) ULONG *Seconds)
{ {
FIXME("Not implemented\n"); FIXME("%p\n", Seconds);
return E_NOTIMPL; *Seconds = 900;
return S_OK;
} }
static HRESULT WINAPI BITS_IBackgroundCopyJob_GetErrorCount( static HRESULT WINAPI BITS_IBackgroundCopyJob_GetErrorCount(
......
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