qmgr: Make SetMaximumDownloadTime() succeed.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
feature/deterministic
Nikolay Sivov 2020-05-08 15:40:22 +03:00 committed by Alexandre Julliard
parent 60837d12a7
commit 2f454fa375
1 changed files with 1 additions and 1 deletions

View File

@ -902,7 +902,7 @@ static HRESULT WINAPI BackgroundCopyJob_GetOwnerElevationState(IBackgroundCopyJo
static HRESULT WINAPI BackgroundCopyJob_SetMaximumDownloadTime(IBackgroundCopyJob4 *iface, ULONG timeout)
{
FIXME("%p, %u.\n", iface, timeout);
return E_NOTIMPL;
return S_OK;
}
static HRESULT WINAPI BackgroundCopyJob_GetMaximumDownloadTime(IBackgroundCopyJob4 *iface, ULONG *timeout)