dwmapi: Add stub DwmpGetColorizationParameters.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=43177 Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
6955e368f4
commit
32f3918108
|
@ -20,7 +20,7 @@
|
|||
124 stub -noname DwmpRegisterThumbnail
|
||||
125 stub DwmpDxBindSwapChain
|
||||
126 stub DwmpDxUnbindSwapChain
|
||||
127 stub -noname DwmpGetColorizationParameters
|
||||
127 stdcall -noname DwmpGetColorizationParameters(ptr)
|
||||
128 stub DwmpDxgiIsThreadDesktopComposited
|
||||
129 stub -noname DwmpDxgiDisableRedirection
|
||||
130 stub -noname DwmpDxgiEnableRedirection
|
||||
|
|
|
@ -286,3 +286,12 @@ HRESULT WINAPI DwmSetIconicThumbnail(HWND hwnd, HBITMAP hbmp, DWORD flags)
|
|||
FIXME("(%p %p %x) stub\n", hwnd, hbmp, flags);
|
||||
return S_OK;
|
||||
};
|
||||
|
||||
/**********************************************************************
|
||||
* DwmpGetColorizationParameters (DWMAPI.@)
|
||||
*/
|
||||
HRESULT WINAPI DwmpGetColorizationParameters(void *params)
|
||||
{
|
||||
FIXME("(%p) stub\n", params);
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue