From e6850cd3082f42c827669167a022acb44c15aa84 Mon Sep 17 00:00:00 2001 From: Vincent Povirk Date: Tue, 28 Jul 2009 15:04:46 -0500 Subject: [PATCH] windowscodecs: implement IWICBitmapDecoderInfo::GetComponentType --- dlls/windowscodecs/info.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/dlls/windowscodecs/info.c b/dlls/windowscodecs/info.c index 3db3d2d..c3895da 100644 --- a/dlls/windowscodecs/info.c +++ b/dlls/windowscodecs/info.c @@ -95,8 +95,9 @@ static ULONG WINAPI BitmapDecoderInfo_Release(IWICBitmapDecoderInfo *iface) static HRESULT WINAPI BitmapDecoderInfo_GetComponentType(IWICBitmapDecoderInfo *iface, WICComponentType *pType) { - FIXME("(%p,%p): stub\n", iface, pType); - return E_NOTIMPL; + TRACE("(%p,%p)\n", iface, pType); + *pType = WICDecoder; + return S_OK; } static HRESULT WINAPI BitmapDecoderInfo_GetCLSID(IWICBitmapDecoderInfo *iface, CLSID *pclsid) -- 1.5.4.3