Commit 2b14970e authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

windowscodecs: Implement GetContainerFormat for the GIF decoder.

parent 7c9e198a
...@@ -369,8 +369,8 @@ static HRESULT WINAPI GifDecoder_Initialize(IWICBitmapDecoder *iface, IStream *p ...@@ -369,8 +369,8 @@ static HRESULT WINAPI GifDecoder_Initialize(IWICBitmapDecoder *iface, IStream *p
static HRESULT WINAPI GifDecoder_GetContainerFormat(IWICBitmapDecoder *iface, static HRESULT WINAPI GifDecoder_GetContainerFormat(IWICBitmapDecoder *iface,
GUID *pguidContainerFormat) GUID *pguidContainerFormat)
{ {
FIXME("(%p,%s): stub\n", iface, debugstr_guid(pguidContainerFormat)); memcpy(pguidContainerFormat, &GUID_ContainerFormatGif, sizeof(GUID));
return E_NOTIMPL; return S_OK;
} }
static HRESULT WINAPI GifDecoder_GetDecoderInfo(IWICBitmapDecoder *iface, static HRESULT WINAPI GifDecoder_GetDecoderInfo(IWICBitmapDecoder *iface,
......
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