windowscodecs: Implement IWICBitmapDecoderInfo::GetComponentType.

This commit is contained in:
Vincent Povirk 2009-07-28 15:04:46 -05:00 committed by Alexandre Julliard
parent f24834f486
commit 3f2ff08803
1 changed files with 3 additions and 2 deletions

View File

@ -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)