From 2c685d541feb8bdeeacb822278e0fa995d24bce2 Mon Sep 17 00:00:00 2001 From: Louis Lenders Date: Fri, 2 Oct 2009 16:47:58 +0200 Subject: dwmapi: add stub for DwmGetGraphicsStreamTransformHint modified: dlls/dwmapi/dwmapi.spec modified: dlls/dwmapi/dwmapi_main.c --- 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..04a5a0e 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, MIL_MATRIX3X2D *pTransform) +{ + FIXME("(%d, %p) stub\n", uIndex, pTransform); + + return E_NOTIMPL; +} -- 1.6.0.4