Commit 8d71cc1f authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

windowscodecs: Implement MetadataHandler_GetCount.

parent 1f48c89e
......@@ -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,
......
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