You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-09-12 18:50:20 -07:00
Added patch to fake success in dwmapi.DwmSetWindowAttribute function.
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
From 12fa52d23ad77d08100444fd04b9deaf06b5ac63 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Michael=20M=C3=BCller?= <michael@fds-team.de>
|
||||
Date: Fri, 18 Mar 2016 04:25:59 +0100
|
||||
Subject: dwmapi: Return S_OK from DwmSetWindowAttribute function.
|
||||
|
||||
---
|
||||
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 a776cfe..7ae2dcf 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;
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
--
|
||||
2.7.1
|
||||
|
1
patches/dwmapi-DwmSetWindowAttribute/definition
Normal file
1
patches/dwmapi-DwmSetWindowAttribute/definition
Normal file
@@ -0,0 +1 @@
|
||||
Fixes: Fake success in dwmapi.DwmSetWindowAttribute function
|
Reference in New Issue
Block a user