windowscodecs: Implement GetContainerFormat for the TIFF metadata block reader.

This commit is contained in:
Dmitry Timoshkov 2012-09-12 15:09:56 +09:00 committed by Alexandre Julliard
parent 5373f8520d
commit b8c4ba6603
1 changed files with 6 additions and 2 deletions

View File

@ -1147,8 +1147,12 @@ static ULONG WINAPI TiffFrameDecode_Block_Release(IWICMetadataBlockReader *iface
static HRESULT WINAPI TiffFrameDecode_Block_GetContainerFormat(IWICMetadataBlockReader *iface,
GUID *guid)
{
FIXME("(%p,%p): stub\n", iface, guid);
return E_NOTIMPL;
TRACE("(%p,%p)\n", iface, guid);
if (!guid) return E_INVALIDARG;
*guid = GUID_ContainerFormatTiff;
return S_OK;
}
static HRESULT WINAPI TiffFrameDecode_Block_GetCount(IWICMetadataBlockReader *iface,