Louis Lenders : dwmapi: Return S_OK in DwmExtendFrameIntoClientArea.

Alexandre Julliard julliard at winehq.org
Sun Mar 3 13:21:25 CST 2019


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

Author: Louis Lenders <xerox.xerox2000x at gmail.com>
Date:   Fri Sep 21 18:58:24 2018 +0200

dwmapi: Return S_OK in DwmExtendFrameIntoClientArea.

Signed-off-by: Louis Lenders <xerox.xerox2000x at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>
(cherry picked from commit a1f5a7699e7138a76cb9dc50e3cda1c8c5ffae57)
Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>

---

 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 7ac0b2b..27f4f4f 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;
 }
 
 /**********************************************************************




More information about the wine-cvs mailing list