From 656e13b41e1edcdf676f1add3a449676aeedd570 Mon Sep 17 00:00:00 2001 From: Ziqing Hui Date: Wed, 22 Apr 2020 16:34:19 +0800 Subject: [PATCH] windowscodecs: Implement DdsDecoder_GetDecoderInfo(). Signed-off-by: Ziqing Hui Signed-off-by: Vincent Povirk Signed-off-by: Alexandre Julliard --- dlls/windowscodecs/ddsformat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/windowscodecs/ddsformat.c b/dlls/windowscodecs/ddsformat.c index a5036f23d6d..049fb888398 100644 --- a/dlls/windowscodecs/ddsformat.c +++ b/dlls/windowscodecs/ddsformat.c @@ -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,