windowscodecs: Implement FormatConverterInfo_GetSpecVersion.
This commit is contained in:
parent
3dd73e90b5
commit
7c19137996
|
@ -1013,8 +1013,12 @@ static HRESULT WINAPI FormatConverterInfo_GetVersion(IWICFormatConverterInfo *if
|
|||
static HRESULT WINAPI FormatConverterInfo_GetSpecVersion(IWICFormatConverterInfo *iface, UINT cchSpecVersion,
|
||||
WCHAR *wzSpecVersion, UINT *pcchActual)
|
||||
{
|
||||
FIXME("(%p,%u,%p,%p): stub\n", iface, cchSpecVersion, wzSpecVersion, pcchActual);
|
||||
return E_NOTIMPL;
|
||||
FormatConverterInfo *This = impl_from_IWICFormatConverterInfo(iface);
|
||||
|
||||
TRACE("(%p,%u,%p,%p)\n", iface, cchSpecVersion, wzSpecVersion, pcchActual);
|
||||
|
||||
return ComponentInfo_GetStringValue(This->classkey, specversion_valuename,
|
||||
cchSpecVersion, wzSpecVersion, pcchActual);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI FormatConverterInfo_GetFriendlyName(IWICFormatConverterInfo *iface, UINT cchFriendlyName,
|
||||
|
|
Loading…
Reference in New Issue