Module: wine Branch: master Commit: bd2999db92e63f3aa8b48945503c616c28726842 URL: http://source.winehq.org/git/wine.git/?a=commit;h=bd2999db92e63f3aa8b4894550...
Author: Michael Müller michael@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@fds-team.de Signed-off-by: Sebastian Lackner sebastian@fds-team.de Signed-off-by: Alexandre Julliard julliard@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; }
/**********************************************************************