windowscodecs: Implement IWICColorContext::GetExifColorSpace.

This commit is contained in:
Hans Leidekker 2012-11-15 14:08:47 +01:00 committed by Alexandre Julliard
parent a7f0c14bef
commit da7c8c6331
1 changed files with 5 additions and 2 deletions

View File

@ -158,8 +158,11 @@ static HRESULT WINAPI ColorContext_GetProfileBytes(IWICColorContext *iface,
static HRESULT WINAPI ColorContext_GetExifColorSpace(IWICColorContext *iface,
UINT *pValue)
{
FIXME("(%p,%p)\n", iface, pValue);
return E_NOTIMPL;
ColorContext *This = impl_from_IWICColorContext(iface);
TRACE("(%p,%p)\n", iface, pValue);
*pValue = This->exif_color_space;
return S_OK;
}
static const IWICColorContextVtbl ColorContext_Vtbl = {