windowscodecs: Implement MetadataHandler_GetCount.
This commit is contained in:
parent
1f48c89e04
commit
8d71cc1f2d
|
@ -149,10 +149,14 @@ static HRESULT WINAPI MetadataHandler_GetMetadataHandlerInfo(IWICMetadataWriter
|
|||
static HRESULT WINAPI MetadataHandler_GetCount(IWICMetadataWriter *iface,
|
||||
UINT *pcCount)
|
||||
{
|
||||
MetadataHandler *This = impl_from_IWICMetadataWriter(iface);
|
||||
|
||||
TRACE("%p,%p\n", iface, pcCount);
|
||||
|
||||
if (!pcCount) return E_INVALIDARG;
|
||||
|
||||
FIXME("(%p,%p): stub\n", iface, pcCount);
|
||||
return E_NOTIMPL;
|
||||
*pcCount = This->item_count;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI MetadataHandler_GetValueByIndex(IWICMetadataWriter *iface,
|
||||
|
|
Loading…
Reference in New Issue