From 89db6104ccdf556e8a2ad8cfa0a8e9f014f71d04 Mon Sep 17 00:00:00 2001 From: Vincent Povirk Date: Mon, 17 Aug 2009 13:23:12 -0500 Subject: [PATCH] windowscodecs: implement GetContainerFormat for the GIF decoder --- dlls/windowscodecs/gifformat.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/windowscodecs/gifformat.c b/dlls/windowscodecs/gifformat.c index 9f998d8..a09f2ff 100644 --- a/dlls/windowscodecs/gifformat.c +++ b/dlls/windowscodecs/gifformat.c @@ -369,8 +369,8 @@ static HRESULT WINAPI GifDecoder_Initialize(IWICBitmapDecoder *iface, IStream *p static HRESULT WINAPI GifDecoder_GetContainerFormat(IWICBitmapDecoder *iface, GUID *pguidContainerFormat) { - FIXME("(%p,%s): stub\n", iface, debugstr_guid(pguidContainerFormat)); - return E_NOTIMPL; + memcpy(pguidContainerFormat, &GUID_ContainerFormatGif, sizeof(GUID)); + return S_OK; } static HRESULT WINAPI GifDecoder_GetDecoderInfo(IWICBitmapDecoder *iface, -- 1.5.4.3