Gijs Vermeulen : wuapi: Fake success in IUpdateInstaller::get_IsBusy.

Alexandre Julliard julliard at winehq.org
Thu May 28 17:11:09 CDT 2020


Module: wine
Branch: master
Commit: b9acfa96a9a91cf942f65debfaebe3b5cfdeccab
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=b9acfa96a9a91cf942f65debfaebe3b5cfdeccab

Author: Gijs Vermeulen <gijsvrm at gmail.com>
Date:   Sat May 23 16:41:32 2020 +0200

wuapi: Fake success in IUpdateInstaller::get_IsBusy.

Signed-off-by: Gijs Vermeulen <gijsvrm at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/wuapi/installer.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dlls/wuapi/installer.c b/dlls/wuapi/installer.c
index 376148244d..acfc101f8c 100644
--- a/dlls/wuapi/installer.c
+++ b/dlls/wuapi/installer.c
@@ -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(




More information about the wine-cvs mailing list