mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 20:30:01 +00:00
qmgr: Improve a couple of stubs.
This commit is contained in:
parent
1d8dbeff9a
commit
0184dea2d4
@ -382,32 +382,34 @@ static HRESULT WINAPI BITS_IBackgroundCopyJob_SetMinimumRetryDelay(
|
||||
IBackgroundCopyJob2 *iface,
|
||||
ULONG Seconds)
|
||||
{
|
||||
FIXME("Not implemented\n");
|
||||
return E_NOTIMPL;
|
||||
FIXME("%u\n", Seconds);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI BITS_IBackgroundCopyJob_GetMinimumRetryDelay(
|
||||
IBackgroundCopyJob2 *iface,
|
||||
ULONG *Seconds)
|
||||
{
|
||||
FIXME("Not implemented\n");
|
||||
return E_NOTIMPL;
|
||||
FIXME("%p\n", Seconds);
|
||||
*Seconds = 30;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI BITS_IBackgroundCopyJob_SetNoProgressTimeout(
|
||||
IBackgroundCopyJob2 *iface,
|
||||
ULONG Seconds)
|
||||
{
|
||||
FIXME("Not implemented\n");
|
||||
return E_NOTIMPL;
|
||||
FIXME("%u\n", Seconds);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI BITS_IBackgroundCopyJob_GetNoProgressTimeout(
|
||||
IBackgroundCopyJob2 *iface,
|
||||
ULONG *Seconds)
|
||||
{
|
||||
FIXME("Not implemented\n");
|
||||
return E_NOTIMPL;
|
||||
FIXME("%p\n", Seconds);
|
||||
*Seconds = 900;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI BITS_IBackgroundCopyJob_GetErrorCount(
|
||||
|
Loading…
Reference in New Issue
Block a user