Commit ca79cf9b authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

dwmapi: Add stubbed DwmGetWindowAttribute.

parent 38d7119d
......@@ -32,7 +32,7 @@
@ stdcall DwmGetGraphicsStreamClient(long ptr)
@ stdcall DwmGetGraphicsStreamTransformHint(long ptr)
@ stdcall DwmGetTransportAttributes(ptr ptr ptr)
@ stub DwmGetWindowAttribute
@ stdcall DwmGetWindowAttribute(ptr long ptr long)
@ stdcall DwmIsCompositionEnabled(ptr)
@ stub DwmModifyPreviousDxFrameDuration
@ stub DwmQueryThumbnailSourceSize
......
......@@ -188,3 +188,13 @@ BOOL WINAPI DwmDefWindowProc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam,
return FALSE;
}
/**********************************************************************
* DwmGetWindowAttribute (DWMAPI.@)
*/
HRESULT WINAPI DwmGetWindowAttribute(HWND hwnd, DWORD attribute, PVOID pv_attribute, DWORD size)
{
FIXME("(%p %d %p %d) stub\n", hwnd, attribute, pv_attribute, size);
return E_NOTIMPL;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment