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