dwmapi: Add stub for DwmGetGraphicsStreamTransformHint.
This commit is contained in:
parent
be72cd2136
commit
42f0bbb332
|
@ -30,7 +30,7 @@
|
||||||
@ stdcall DwmGetColorizationColor(ptr long)
|
@ stdcall DwmGetColorizationColor(ptr long)
|
||||||
@ stub DwmGetCompositionTimingInfo
|
@ stub DwmGetCompositionTimingInfo
|
||||||
@ stdcall DwmGetGraphicsStreamClient(long ptr)
|
@ stdcall DwmGetGraphicsStreamClient(long ptr)
|
||||||
@ stub DwmGetGraphicsStreamTransformHint
|
@ stdcall DwmGetGraphicsStreamTransformHint(long ptr)
|
||||||
@ stdcall DwmGetTransportAttributes(ptr ptr ptr)
|
@ stdcall DwmGetTransportAttributes(ptr ptr ptr)
|
||||||
@ stub DwmGetWindowAttribute
|
@ stub DwmGetWindowAttribute
|
||||||
@ stdcall DwmIsCompositionEnabled(ptr)
|
@ stdcall DwmIsCompositionEnabled(ptr)
|
||||||
|
|
|
@ -149,3 +149,13 @@ HRESULT WINAPI DwmEnableMMCSS(BOOL enableMMCSS)
|
||||||
|
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**********************************************************************
|
||||||
|
* DwmGetGraphicsStreamTransformHint (DWMAPI.@)
|
||||||
|
*/
|
||||||
|
HRESULT WINAPI DwmGetGraphicsStreamTransformHint(UINT uIndex, MilMatrix3x2D *pTransform)
|
||||||
|
{
|
||||||
|
FIXME("(%d, %p) stub\n", uIndex, pTransform);
|
||||||
|
|
||||||
|
return E_NOTIMPL;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue