push cc8bc80451cc24f4d7cf75168b569f0ebfe19547
[wine/hacks.git] / dlls / gdi32 / icm.c
blob0e346ee52cdc7f17eba40621255bd14f13479593
1 /*
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
22 #include "config.h"
24 #include <stdarg.h>
25 #include <string.h>
27 #include "windef.h"
28 #include "winbase.h"
29 #include "wingdi.h"
30 #include "winnls.h"
31 #include "winreg.h"
33 #include "gdi_private.h"
35 #include "wine/debug.h"
36 #include "wine/unicode.h"
38 WINE_DEFAULT_DEBUG_CHANNEL(icm);
41 /***********************************************************************
42 * EnumICMProfilesA (GDI32.@)
44 INT WINAPI EnumICMProfilesA(HDC hdc, ICMENUMPROCA func, LPARAM lparam)
46 FIXME("%p, %p, 0x%08lx stub\n", hdc, func, lparam);
47 return -1;
50 /***********************************************************************
51 * EnumICMProfilesW (GDI32.@)
53 INT WINAPI EnumICMProfilesW(HDC hdc, ICMENUMPROCW func, LPARAM lparam)
55 FIXME("%p, %p, 0x%08lx stub\n", hdc, func, lparam);
56 return -1;
59 /**********************************************************************
60 * GetICMProfileA (GDI32.@)
62 * Returns the filename of the specified device context's color
63 * management profile, even if color management is not enabled
64 * for that DC.
66 * RETURNS
67 * TRUE if filename is copied successfully.
68 * FALSE if the buffer length pointed to by size is too small.
70 * FIXME
71 * How does Windows assign these? Some registry key?
73 BOOL WINAPI GetICMProfileA(HDC hdc, LPDWORD size, LPSTR filename)
75 WCHAR filenameW[MAX_PATH];
76 DWORD buflen = MAX_PATH;
77 BOOL ret = FALSE;
79 TRACE("%p, %p, %p\n", hdc, size, filename);
81 if (!hdc || !size || !filename) return FALSE;
83 if (GetICMProfileW(hdc, &buflen, filenameW))
85 int len = WideCharToMultiByte(CP_ACP, 0, filenameW, -1, NULL, 0, NULL, NULL);
86 if (*size >= len)
88 WideCharToMultiByte(CP_ACP, 0, filenameW, -1, filename, *size, NULL, NULL);
89 ret = TRUE;
91 else SetLastError(ERROR_INSUFFICIENT_BUFFER);
92 *size = len;
94 return ret;
97 /**********************************************************************
98 * GetICMProfileW (GDI32.@)
100 BOOL WINAPI GetICMProfileW(HDC hdc, LPDWORD size, LPWSTR filename)
102 BOOL ret = FALSE;
103 DC *dc = get_dc_ptr(hdc);
105 TRACE("%p, %p, %p\n", hdc, size, filename);
107 if (dc)
109 if (dc->funcs->pGetICMProfile)
110 ret = dc->funcs->pGetICMProfile(dc->physDev, size, filename);
111 release_dc_ptr(dc);
113 return ret;
116 /**********************************************************************
117 * GetLogColorSpaceA (GDI32.@)
119 BOOL WINAPI GetLogColorSpaceA(HCOLORSPACE colorspace, LPLOGCOLORSPACEA buffer, DWORD size)
121 FIXME("%p %p 0x%08x stub\n", colorspace, buffer, size);
122 return FALSE;
125 /**********************************************************************
126 * GetLogColorSpaceW (GDI32.@)
128 BOOL WINAPI GetLogColorSpaceW(HCOLORSPACE colorspace, LPLOGCOLORSPACEW buffer, DWORD size)
130 FIXME("%p %p 0x%08x stub\n", colorspace, buffer, size);
131 return FALSE;
134 /**********************************************************************
135 * SetICMProfileA (GDI32.@)
137 BOOL WINAPI SetICMProfileA(HDC hdc, LPSTR filename)
139 FIXME("%p %s stub\n", hdc, debugstr_a(filename));
140 return TRUE;
143 /**********************************************************************
144 * SetICMProfileW (GDI32.@)
146 BOOL WINAPI SetICMProfileW(HDC hdc, LPWSTR filename)
148 FIXME("%p %s stub\n", hdc, debugstr_w(filename));
149 return TRUE;
152 /**********************************************************************
153 * UpdateICMRegKeyA (GDI32.@)
155 BOOL WINAPI UpdateICMRegKeyA(DWORD reserved, LPSTR cmid, LPSTR filename, UINT command)
157 FIXME("0x%08x, %s, %s, 0x%08x stub\n", reserved, debugstr_a(cmid), debugstr_a(filename), command);
158 return TRUE;
161 /**********************************************************************
162 * UpdateICMRegKeyW (GDI32.@)
164 BOOL WINAPI UpdateICMRegKeyW(DWORD reserved, LPWSTR cmid, LPWSTR filename, UINT command)
166 FIXME("0x%08x, %s, %s, 0x%08x stub\n", reserved, debugstr_w(cmid), debugstr_w(filename), command);
167 return TRUE;