Commit b9bb5120 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

windowscodecs: Implement IWICBitmapDecoder::GetMetadataQueryReader in the JPEG encoder.

parent b4c3a9c0
...@@ -412,10 +412,14 @@ static HRESULT WINAPI JpegDecoder_CopyPalette(IWICBitmapDecoder *iface, ...@@ -412,10 +412,14 @@ static HRESULT WINAPI JpegDecoder_CopyPalette(IWICBitmapDecoder *iface,
} }
static HRESULT WINAPI JpegDecoder_GetMetadataQueryReader(IWICBitmapDecoder *iface, static HRESULT WINAPI JpegDecoder_GetMetadataQueryReader(IWICBitmapDecoder *iface,
IWICMetadataQueryReader **ppIMetadataQueryReader) IWICMetadataQueryReader **reader)
{ {
FIXME("(%p,%p): stub\n", iface, ppIMetadataQueryReader); TRACE("(%p,%p)\n", iface, reader);
return E_NOTIMPL;
if (!reader) return E_INVALIDARG;
*reader = NULL;
return WINCODEC_ERR_UNSUPPORTEDOPERATION;
} }
static HRESULT WINAPI JpegDecoder_GetPreview(IWICBitmapDecoder *iface, static HRESULT WINAPI JpegDecoder_GetPreview(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