windowscodecs: Implement GetFrameCount for PNG decoder.

This commit is contained in:
Vincent Povirk 2009-08-13 17:02:19 -05:00 committed by Alexandre Julliard
parent 25f3802b36
commit f626204321
1 changed files with 2 additions and 2 deletions

View File

@ -182,8 +182,8 @@ static HRESULT WINAPI PngDecoder_GetThumbnail(IWICBitmapDecoder *iface,
static HRESULT WINAPI PngDecoder_GetFrameCount(IWICBitmapDecoder *iface,
UINT *pCount)
{
FIXME("(%p,%p): stub\n", iface, pCount);
return E_NOTIMPL;
*pCount = 1;
return S_OK;
}
static HRESULT WINAPI PngDecoder_GetFrame(IWICBitmapDecoder *iface,