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
);
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
);
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
);
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
67 * TRUE if filename is copied successfully.
68 * FALSE if the buffer length pointed to by size is too small.
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
;
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
);
88 WideCharToMultiByte(CP_ACP
, 0, filenameW
, -1, filename
, *size
, NULL
, NULL
);
91 else SetLastError(ERROR_INSUFFICIENT_BUFFER
);
97 /**********************************************************************
98 * GetICMProfileW (GDI32.@)
100 BOOL WINAPI
GetICMProfileW(HDC hdc
, LPDWORD size
, LPWSTR filename
)
103 DC
*dc
= get_dc_ptr(hdc
);
105 TRACE("%p, %p, %p\n", hdc
, size
, filename
);
109 if (dc
->funcs
->pGetICMProfile
)
110 ret
= dc
->funcs
->pGetICMProfile(dc
->physDev
, size
, filename
);
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
);
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
);
134 /**********************************************************************
135 * SetICMProfileA (GDI32.@)
137 BOOL WINAPI
SetICMProfileA(HDC hdc
, LPSTR filename
)
139 FIXME("%p %s stub\n", hdc
, debugstr_a(filename
));
143 /**********************************************************************
144 * SetICMProfileW (GDI32.@)
146 BOOL WINAPI
SetICMProfileW(HDC hdc
, LPWSTR filename
)
148 FIXME("%p %s stub\n", hdc
, debugstr_w(filename
));
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
);
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
);