From 4778e1ce71b380bd61abf9df2df6394a71187978 Mon Sep 17 00:00:00 2001 From: Louis Lenders Date: Sun, 11 Oct 2009 23:12:30 +0200 Subject: dwmapi: add stub for DwmGetGraphicsStreamTransformHint --- dlls/dwmapi/dwmapi.spec | 2 +- dlls/dwmapi/dwmapi_main.c | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletions(-) diff --git a/dlls/dwmapi/dwmapi.spec b/dlls/dwmapi/dwmapi.spec index 27e0704..7c613d0 100644 --- a/dlls/dwmapi/dwmapi.spec +++ b/dlls/dwmapi/dwmapi.spec @@ -30,7 +30,7 @@ @ stdcall DwmGetColorizationColor(ptr long) @ stub DwmGetCompositionTimingInfo @ stdcall DwmGetGraphicsStreamClient(long ptr) -@ stub DwmGetGraphicsStreamTransformHint +@ stdcall DwmGetGraphicsStreamTransformHint(long ptr) @ stdcall DwmGetTransportAttributes(ptr ptr ptr) @ stub DwmGetWindowAttribute @ stdcall DwmIsCompositionEnabled(ptr) diff --git a/dlls/dwmapi/dwmapi_main.c b/dlls/dwmapi/dwmapi_main.c index 40ecec7..6042028 100644 --- a/dlls/dwmapi/dwmapi_main.c +++ b/dlls/dwmapi/dwmapi_main.c @@ -149,3 +149,13 @@ HRESULT WINAPI DwmEnableMMCSS(BOOL enableMMCSS) return S_OK; } + +/********************************************************************** + * DwmGetGraphicsStreamTransformHint (DWMAPI.@) + */ +HRESULT WINAPI DwmGetGraphicsStreamTransformHint(UINT uIndex, MilMatrix3x2D *pTransform) +{ + FIXME("(%d, %p) stub\n", uIndex, pTransform); + + return E_NOTIMPL; +} -- 1.6.0.4