[PATCH] shcore: Return S_OK in SetCurrentProcessExplicitAppUserModelID

Louis Lenders xerox.xerox2000x at gmail.com
Wed May 20 16:19:18 CDT 2020


https://bugs.winehq.org/show_bug.cgi?id=49189
Signed-off-by: Louis Lenders <xerox.xerox2000x at gmail.com>
---
 dlls/shcore/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/shcore/main.c b/dlls/shcore/main.c
index 3f95c1ffd8..e552ba277f 100644
--- a/dlls/shcore/main.c
+++ b/dlls/shcore/main.c
@@ -245,7 +245,7 @@ HRESULT WINAPI IUnknown_SetSite(IUnknown *obj, IUnknown *site)
 HRESULT WINAPI SetCurrentProcessExplicitAppUserModelID(const WCHAR *appid)
 {
     FIXME("%s: stub\n", debugstr_w(appid));
-    return E_NOTIMPL;
+    return S_OK;
 }
 
 HRESULT WINAPI GetCurrentProcessExplicitAppUserModelID(const WCHAR **appid)
-- 
2.27.0.rc0




More information about the wine-devel mailing list