From: Tobias Markus <tobbi.bugs@googlemail.com> Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=48370 --- dlls/dwmapi/dwmapi.spec | 2 +- dlls/dwmapi/dwmapi_main.c | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/dlls/dwmapi/dwmapi.spec b/dlls/dwmapi/dwmapi.spec index e69c3e3e82a..bfba361f708 100644 --- a/dlls/dwmapi/dwmapi.spec +++ b/dlls/dwmapi/dwmapi.spec @@ -2,7 +2,7 @@ 101 stub DwmpDxUpdateWindowSharedSurface 102 stdcall DwmEnableComposition(long) 103 stub -noname DwmpRestartComposition -104 stub -noname DwmpSetColorizationColor +104 stdcall -noname DwmpSetColorizationColor(ptr ptr) 105 stub -noname DwmpStartOrStopFlip3D 106 stub -noname DwmpIsCompositionCapable 107 stub -noname DwmpGetGlobalState diff --git a/dlls/dwmapi/dwmapi_main.c b/dlls/dwmapi/dwmapi_main.c index 49e05cd207e..bc71de29afa 100644 --- a/dlls/dwmapi/dwmapi_main.c +++ b/dlls/dwmapi/dwmapi_main.c @@ -63,6 +63,16 @@ HRESULT WINAPI DwmEnableComposition(UINT uCompositionAction) return S_OK; } +/********************************************************************** + * DwmpSetColorizationColor (DWMAPI.@) + */ +HRESULT WINAPI DwmpSetColorizationColor(DWORD *colorization, BOOL *opaque_blend) +{ + FIXME("(%p %p) stub\n", colorization, opaque_blend); + + return S_OK; +} + /********************************************************************** * DwmExtendFrameIntoClientArea (DWMAPI.@) */ -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/11019