Commit 3f2ff088 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

windowscodecs: Implement IWICBitmapDecoderInfo::GetComponentType.

parent f24834f4
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment