=?UTF-8?Q?Michael=20M=C3=BCller=20?=: dwmapi: Return S_OK in DwmSetWindowAttribute stub.

Alexandre Julliard julliard at wine.codeweavers.com
Mon May 2 09:52:31 CDT 2016


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

Author: Michael Müller <michael at fds-team.de>
Date:   Mon May  2 15:06:46 2016 +0200

dwmapi: Return S_OK in DwmSetWindowAttribute stub.

Signed-off-by: Michael Müller <michael at fds-team.de>
Signed-off-by: Sebastian Lackner <sebastian at fds-team.de>
Signed-off-by: Alexandre Julliard <julliard 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 155d7d3..8c3472a 100644
--- a/dlls/dwmapi/dwmapi_main.c
+++ b/dlls/dwmapi/dwmapi_main.c
@@ -126,7 +126,7 @@ HRESULT WINAPI DwmSetWindowAttribute(HWND hwnd, DWORD attributenum, LPCVOID attr
 
     if (!once++) FIXME("(%p, %x, %p, %x) stub\n", hwnd, attributenum, attribute, size);
 
-    return E_NOTIMPL;
+    return S_OK;
 }
 
 /**********************************************************************




More information about the wine-cvs mailing list