2 * Image Color Management
4 * Copyright 2004 Marcus Meissner
5 * Copyright 2008 Hans Leidekker
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
33 #include "gdi_private.h"
35 #include "wine/debug.h"
36 #include "wine/unicode.h"
38 WINE_DEFAULT_DEBUG_CHANNEL(icm);
52 INT CALLBACK enum_profiles_callback( LPWSTR filename, LPARAM lparam )
55 struct enum_profiles *ep = (struct enum_profiles *)lparam;
59 return ep->callback.funcW( filename, ep->data );
61 len = WideCharToMultiByte( CP_ACP, 0, filename, -1, NULL, 0, NULL, NULL );
62 filenameA = HeapAlloc( GetProcessHeap(), 0, len );
65 WideCharToMultiByte( CP_ACP, 0, filename, -1, filenameA, len, NULL, NULL );
66 ret = ep->callback.funcA( filenameA, ep->data );
67 HeapFree( GetProcessHeap(), 0, filenameA );
72 /***********************************************************************
73 * EnumICMProfilesA (GDI32.@)
75 INT WINAPI EnumICMProfilesA(HDC hdc, ICMENUMPROCA func, LPARAM lparam)
80 TRACE("%p, %p, 0x%08lx\n", hdc, func, lparam);
83 if ((dc = get_dc_ptr(hdc)))
85 if (dc->funcs->pEnumICMProfiles)
87 struct enum_profiles ep;
90 ep.callback.funcA = func;
92 ret = dc->funcs->pEnumICMProfiles(dc->physDev, enum_profiles_callback, (LPARAM)&ep);
99 /***********************************************************************
100 * EnumICMProfilesW (GDI32.@)
102 INT WINAPI EnumICMProfilesW(HDC hdc, ICMENUMPROCW func, LPARAM lparam)
107 TRACE("%p, %p, 0x%08lx\n", hdc, func, lparam);
109 if (!func) return -1;
110 if ((dc = get_dc_ptr(hdc)))
112 if (dc->funcs->pEnumICMProfiles)
114 struct enum_profiles ep;
117 ep.callback.funcW = func;
119 ret = dc->funcs->pEnumICMProfiles(dc->physDev, enum_profiles_callback, (LPARAM)&ep);
126 /**********************************************************************
127 * GetICMProfileA (GDI32.@)
129 * Returns the filename of the specified device context's color
130 * management profile, even if color management is not enabled
134 * TRUE if filename is copied successfully.
135 * FALSE if the buffer length pointed to by size is too small.
138 * How does Windows assign these? Some registry key?
140 BOOL WINAPI GetICMProfileA(HDC hdc, LPDWORD size, LPSTR filename)
142 WCHAR filenameW[MAX_PATH];
143 DWORD buflen = MAX_PATH;
146 TRACE("%p, %p, %p\n", hdc, size, filename);
148 if (!hdc || !size || !filename) return FALSE;
150 if (GetICMProfileW(hdc, &buflen, filenameW))
152 int len = WideCharToMultiByte(CP_ACP, 0, filenameW, -1, NULL, 0, NULL, NULL);
155 WideCharToMultiByte(CP_ACP, 0, filenameW, -1, filename, *size, NULL, NULL);
158 else SetLastError(ERROR_INSUFFICIENT_BUFFER);
164 /**********************************************************************
165 * GetICMProfileW (GDI32.@)
167 BOOL WINAPI GetICMProfileW(HDC hdc, LPDWORD size, LPWSTR filename)
170 DC *dc = get_dc_ptr(hdc);
172 TRACE("%p, %p, %p\n", hdc, size, filename);
176 if (dc->funcs->pGetICMProfile)
177 ret = dc->funcs->pGetICMProfile(dc->physDev, size, filename);
183 /**********************************************************************
184 * GetLogColorSpaceA (GDI32.@)
186 BOOL WINAPI GetLogColorSpaceA(HCOLORSPACE colorspace, LPLOGCOLORSPACEA buffer, DWORD size)
188 FIXME("%p %p 0x%08x stub\n", colorspace, buffer, size);
192 /**********************************************************************
193 * GetLogColorSpaceW (GDI32.@)
195 BOOL WINAPI GetLogColorSpaceW(HCOLORSPACE colorspace, LPLOGCOLORSPACEW buffer, DWORD size)
197 FIXME("%p %p 0x%08x stub\n", colorspace, buffer, size);
201 /**********************************************************************
202 * SetICMProfileA (GDI32.@)
204 BOOL WINAPI SetICMProfileA(HDC hdc, LPSTR filename)
206 FIXME("%p %s stub\n", hdc, debugstr_a(filename));
210 SetLastError( ERROR_INVALID_PARAMETER );
215 SetLastError( ERROR_INVALID_HANDLE );
221 /**********************************************************************
222 * SetICMProfileW (GDI32.@)
224 BOOL WINAPI SetICMProfileW(HDC hdc, LPWSTR filename)
226 FIXME("%p %s stub\n", hdc, debugstr_w(filename));
230 SetLastError( ERROR_INVALID_PARAMETER );
235 SetLastError( ERROR_INVALID_HANDLE );
241 /**********************************************************************
242 * UpdateICMRegKeyA (GDI32.@)
244 BOOL WINAPI UpdateICMRegKeyA(DWORD reserved, LPSTR cmid, LPSTR filename, UINT command)
246 FIXME("0x%08x, %s, %s, 0x%08x stub\n", reserved, debugstr_a(cmid), debugstr_a(filename), command);
250 /**********************************************************************
251 * UpdateICMRegKeyW (GDI32.@)
253 BOOL WINAPI UpdateICMRegKeyW(DWORD reserved, LPWSTR cmid, LPWSTR filename, UINT command)
255 FIXME("0x%08x, %s, %s, 0x%08x stub\n", reserved, debugstr_w(cmid), debugstr_w(filename), command);