[08/10] windowscodecs: Implement IWICColorContext::GetProfileBytes.

Hans Leidekker hans at codeweavers.com
Thu Nov 15 07:09:15 CST 2012


---
 dlls/windowscodecs/colorcontext.c |   14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/dlls/windowscodecs/colorcontext.c b/dlls/windowscodecs/colorcontext.c
index ba23387..5434fc6 100644
--- a/dlls/windowscodecs/colorcontext.c
+++ b/dlls/windowscodecs/colorcontext.c
@@ -151,8 +151,18 @@ static HRESULT WINAPI ColorContext_GetType(IWICColorContext *iface,
 static HRESULT WINAPI ColorContext_GetProfileBytes(IWICColorContext *iface,
     UINT cbBuffer, BYTE *pbBuffer, UINT *pcbActual)
 {
-    FIXME("(%p,%u,%p,%p)\n", iface, cbBuffer, pbBuffer, pcbActual);
-    return E_NOTIMPL;
+    ColorContext *This = impl_from_IWICColorContext(iface);
+    TRACE("(%p,%u,%p,%p)\n", iface, cbBuffer, pbBuffer, pcbActual);
+
+    if (This->type != WICColorContextProfile)
+        return WINCODEC_ERR_NOTINITIALIZED;
+
+    if (cbBuffer >= This->profile_len && pbBuffer)
+        memcpy(pbBuffer, This->profile, This->profile_len);
+
+    *pcbActual = This->profile_len;
+
+    return S_OK;
 }
 
 static HRESULT WINAPI ColorContext_GetExifColorSpace(IWICColorContext *iface,
-- 
1.7.10.4







More information about the wine-patches mailing list