dwmapi: Add stubbed DwmGetWindowAttribute.
This commit is contained in:
parent
38d7119d18
commit
ca79cf9bea
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue