[PATCH] dwmapi: return S_OK in DwmExtendFrameIntoClientArea

Louis Lenders xerox.xerox2000x at gmail.com
Fri Sep 21 11:58:24 CDT 2018


Fix for bug 4583

To: wine-devel <wine-devel at winehq.org>

(Note:also tested Steam that calls this function and didn`t see any negative side-effect of returning S_OK)

Signed-off-by: Louis Lenders <xerox.xerox2000x at gmail.com>
---
 dlls/dwmapi/dwmapi_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/dwmapi/dwmapi_main.c b/dlls/dwmapi/dwmapi_main.c
index 0e6ba3bed1..76e225f791 100644
--- a/dlls/dwmapi/dwmapi_main.c
+++ b/dlls/dwmapi/dwmapi_main.c
@@ -82,7 +82,7 @@ HRESULT WINAPI DwmExtendFrameIntoClientArea(HWND hwnd, const MARGINS* margins)
 {
     FIXME("(%p, %p) stub\n", hwnd, margins);
 
-    return E_NOTIMPL;
+    return S_OK;
 }
 
 /**********************************************************************
-- 
2.17.1




More information about the wine-devel mailing list