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

windowscodecs: Implement MetadataReaderInfo_GetSpecVersion.

parent 497e8840
......@@ -1527,8 +1527,12 @@ static HRESULT WINAPI MetadataReaderInfo_GetVersion(IWICMetadataReaderInfo *ifac
static HRESULT WINAPI MetadataReaderInfo_GetSpecVersion(IWICMetadataReaderInfo *iface,
UINT length, WCHAR *version, UINT *actual_length)
{
FIXME("(%p,%u,%p,%p): stub\n", iface, length, version, actual_length);
return E_NOTIMPL;
MetadataReaderInfo *This = impl_from_IWICMetadataReaderInfo(iface);
TRACE("(%p,%u,%p,%p)\n", iface, length, version, actual_length);
return ComponentInfo_GetStringValue(This->classkey, specversion_valuename,
length, version, actual_length);
}
static HRESULT WINAPI MetadataReaderInfo_GetFriendlyName(IWICMetadataReaderInfo *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