windowscodecs: Implement DdsDecoder_GetDecoderInfo().

Signed-off-by: Ziqing Hui <zhui@codeweavers.com>
Signed-off-by: Vincent Povirk <vincent@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Ziqing Hui 2020-04-22 16:34:19 +08:00 committed by Alexandre Julliard
parent 27c4648507
commit 656e13b41e
1 changed files with 2 additions and 2 deletions

View File

@ -200,9 +200,9 @@ static HRESULT WINAPI DdsDecoder_GetContainerFormat(IWICBitmapDecoder *iface,
static HRESULT WINAPI DdsDecoder_GetDecoderInfo(IWICBitmapDecoder *iface,
IWICBitmapDecoderInfo **ppIDecoderInfo)
{
FIXME("(%p,%p): stub.\n", iface, ppIDecoderInfo);
TRACE("(%p,%p)\n", iface, ppIDecoderInfo);
return E_NOTIMPL;
return get_decoder_info(&CLSID_WICDdsDecoder, ppIDecoderInfo);
}
static HRESULT WINAPI DdsDecoder_CopyPalette(IWICBitmapDecoder *iface,