Module: wine Branch: master Commit: 656e13b41e1edcdf676f1add3a449676aeedd570 URL: https://source.winehq.org/git/wine.git/?a=commit;h=656e13b41e1edcdf676f1add3... Author: Ziqing Hui <zhui(a)codeweavers.com> Date: Wed Apr 22 16:34:19 2020 +0800 windowscodecs: Implement DdsDecoder_GetDecoderInfo(). Signed-off-by: Ziqing Hui <zhui(a)codeweavers.com> Signed-off-by: Vincent Povirk <vincent(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- 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 a5036f23d6..049fb88839 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,