dwmapi: Add a stub for DwmGetTransportAttributes.
This commit is contained in:
parent
5af1a49738
commit
74d000489b
|
@ -31,7 +31,7 @@
|
|||
@ stub DwmGetCompositionTimingInfo
|
||||
@ stub DwmGetGraphicsStreamClient
|
||||
@ stub DwmGetGraphicsStreamTransformHint
|
||||
@ stub DwmGetTransportAttributes
|
||||
@ stdcall DwmGetTransportAttributes(ptr ptr ptr)
|
||||
@ stub DwmGetWindowAttribute
|
||||
@ stdcall DwmIsCompositionEnabled(ptr)
|
||||
@ stub DwmModifyPreviousDxFrameDuration
|
||||
|
|
|
@ -110,6 +110,17 @@ HRESULT WINAPI DwmSetWindowAttribute(HWND hwnd, DWORD attributenum, LPCVOID attr
|
|||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
|
||||
/**********************************************************************
|
||||
* * DwmGetTransportAttributes (DWMAPI.@)
|
||||
* */
|
||||
HRESULT WINAPI DwmGetTransportAttributes(BOOL *pfIsRemoting, BOOL *pfIsConnected, DWORD *pDwGeneration)
|
||||
{
|
||||
FIXME("(%p, %p, %p) stub\n", pfIsRemoting, pfIsConnected, pDwGeneration);
|
||||
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* DwmUnregisterThumbnail (DWMAPI.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue