dwmapi: Add a stub for DwmGetGraphicsStreamClient.
This commit is contained in:
parent
6b8753185f
commit
ce4d4909a1
@ -29,7 +29,7 @@
|
|||||||
@ stdcall DwmFlush()
|
@ stdcall DwmFlush()
|
||||||
@ stdcall DwmGetColorizationColor(ptr long)
|
@ stdcall DwmGetColorizationColor(ptr long)
|
||||||
@ stub DwmGetCompositionTimingInfo
|
@ stub DwmGetCompositionTimingInfo
|
||||||
@ stub DwmGetGraphicsStreamClient
|
@ stdcall DwmGetGraphicsStreamClient(long ptr)
|
||||||
@ stub DwmGetGraphicsStreamTransformHint
|
@ stub DwmGetGraphicsStreamTransformHint
|
||||||
@ stdcall DwmGetTransportAttributes(ptr ptr ptr)
|
@ stdcall DwmGetTransportAttributes(ptr ptr ptr)
|
||||||
@ stub DwmGetWindowAttribute
|
@ stub DwmGetWindowAttribute
|
||||||
|
@ -110,10 +110,19 @@ HRESULT WINAPI DwmSetWindowAttribute(HWND hwnd, DWORD attributenum, LPCVOID attr
|
|||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**********************************************************************
|
||||||
|
* DwmGetGraphicsStreamClient (DWMAPI.@)
|
||||||
|
*/
|
||||||
|
HRESULT WINAPI DwmGetGraphicsStreamClient(UINT uIndex, UUID *pClientUuid)
|
||||||
|
{
|
||||||
|
FIXME("(%d, %p) stub\n", uIndex, pClientUuid);
|
||||||
|
|
||||||
|
return E_NOTIMPL;
|
||||||
|
}
|
||||||
|
|
||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
* * DwmGetTransportAttributes (DWMAPI.@)
|
* DwmGetTransportAttributes (DWMAPI.@)
|
||||||
* */
|
*/
|
||||||
HRESULT WINAPI DwmGetTransportAttributes(BOOL *pfIsRemoting, BOOL *pfIsConnected, DWORD *pDwGeneration)
|
HRESULT WINAPI DwmGetTransportAttributes(BOOL *pfIsRemoting, BOOL *pfIsConnected, DWORD *pDwGeneration)
|
||||||
{
|
{
|
||||||
FIXME("(%p, %p, %p) stub\n", pfIsRemoting, pfIsConnected, pDwGeneration);
|
FIXME("(%p, %p, %p) stub\n", pfIsRemoting, pfIsConnected, pDwGeneration);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user