Commit b9acfa96 authored by Gijs Vermeulen's avatar Gijs Vermeulen Committed by Alexandre Julliard

wuapi: Fake success in IUpdateInstaller::get_IsBusy.

parent 45cb03f4
......@@ -274,8 +274,9 @@ static HRESULT WINAPI update_installer_get_IsBusy(
IUpdateInstaller *This,
VARIANT_BOOL *retval )
{
FIXME("\n");
return E_NOTIMPL;
FIXME("semi-stub, returning VARIANT_FALSE!\n");
*retval = VARIANT_FALSE;
return S_OK;
}
static HRESULT WINAPI update_installer_Uninstall(
......
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