From: Louis Lenders Subject: [PATCH] dwmapi: return S_OK in DwmExtendFrameIntoClientArea Message-Id: <20180921165824.24567-1-xerox.xerox2000x@gmail.com> Date: Fri, 21 Sep 2018 18:58:24 +0200 Fix for bug 4583 To: wine-devel (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 --- 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