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

windowscodecs: Implement IWICMetadataQueryReader::GetContainerFormat.

parent 714175e1
...@@ -89,12 +89,13 @@ static ULONG WINAPI mqr_Release(IWICMetadataQueryReader *iface) ...@@ -89,12 +89,13 @@ static ULONG WINAPI mqr_Release(IWICMetadataQueryReader *iface)
return ref; return ref;
} }
static HRESULT WINAPI mqr_GetContainerFormat(IWICMetadataQueryReader *iface, static HRESULT WINAPI mqr_GetContainerFormat(IWICMetadataQueryReader *iface, GUID *format)
GUID *pguidContainerFormat)
{ {
QueryReader *This = impl_from_IWICMetadataQueryReader(iface); QueryReader *This = impl_from_IWICMetadataQueryReader(iface);
FIXME("(%p,%p)\n", This, pguidContainerFormat);
return E_NOTIMPL; TRACE("(%p,%p)\n", This, format);
return IWICMetadataBlockReader_GetContainerFormat(This->block, format);
} }
static HRESULT WINAPI mqr_GetLocation(IWICMetadataQueryReader *iface, static HRESULT WINAPI mqr_GetLocation(IWICMetadataQueryReader *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