Commit da7c8c63 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

windowscodecs: Implement IWICColorContext::GetExifColorSpace.

parent a7f0c14b
......@@ -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 = {
......
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