Flesh out the icm.h header (add COLORMATCHSETUP & co) so it is
[wine/multimedia.git] / include / icm.h
blob37b32bfa37647904667fd278d75234185f2115d7
1 /*
2 * Copyright 2004 (C) Mike McCormack
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #ifndef __WINE_ICM_H
20 #define __WINE_ICM_H
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
26 typedef HANDLE HPROFILE;
27 typedef HPROFILE *PHPROFILE;
28 typedef HANDLE HTRANSFORM;
30 typedef DWORD TAGTYPE, *PTAGTYPE, *LPTAGTYPE;
32 typedef enum
34 BM_x555RGB = 0x00,
35 BM_565RGB = 0x01,
36 BM_RGBTRIPLETS = 0x02,
37 BM_BGRTRIPLETS = 0x04,
38 BM_xRGBQUADS = 0x08,
39 BM_10b_RGB = 0x09,
40 BM_16b_RGB = 0x0a,
41 BM_xBGRQUADS = 0x10,
42 BM_CMYKQUADS = 0x20,
43 BM_x555XYZ = 0x101,
44 BM_x555Yxz,
45 BM_x555Lab,
46 BM_x555G3CH,
47 BM_XYZTRIPLETS = 0x201,
48 BM_YxyTRIPLETS,
49 BM_LabTRIPLETS,
50 BM_G3CHTRIPLETS,
51 BM_5CHANNEL,
52 BM_6CHANNEL,
53 BM_7CHANNEL,
54 BM_8CHANNEL,
55 BM_GRAY,
56 BM_xXYZQUADS = 0x301,
57 BM_xYxyQUADS,
58 BM_xLabQUADS,
59 BM_xG3CHQUADS,
60 BM_KYMCQUADS,
61 BM_10b_XYZ = 0x401,
62 BM_10b_Yxy,
63 BM_10b_Lab,
64 BM_10b_G3CH,
65 BM_NAMED_INDEX,
66 BM_16b_XYZ = 0x501,
67 BM_16b_Yxy,
68 BM_16b_Lab,
69 BM_16b_G3CH,
70 BM_16b_GRAY,
71 } BMFORMAT, *PBMFORMAT, *LPBMFORMAT;
73 typedef BOOL (CALLBACK *PBMCALLBACKFN)(ULONG,ULONG,LPARAM);
74 typedef PBMCALLBACKFN LPPBMCALLBACKFN;
76 typedef struct tagPROFILEHEADER
78 DWORD phSize;
79 DWORD phCMMType;
80 DWORD phVersion;
81 DWORD phClass;
82 DWORD phDataColorSpace;
83 DWORD phConnectionSpace;
84 DWORD phDateTime[3];
85 DWORD phSignature;
86 DWORD phPlatform;
87 DWORD phProfileFlags;
88 DWORD phManufacturer;
89 DWORD phModel;
90 DWORD phAttributes;
91 DWORD phRenderingIntent;
92 CIEXYZ phIlluminant;
93 DWORD phCreator;
94 BYTE phReserved[44];
95 } PROFILEHEADER, *PPROFILEHEADER, *LPPROFILEHEADER;
97 typedef struct tagPROFILE
99 DWORD dwType;
100 PVOID pProfileData;
101 DWORD cbDataSize;
102 } PROFILE, *PPROFILE, *LPPROFILE;
105 struct _tagCOLORMATCHSETUPA;
106 struct _tagCOLORMATCHSETUPW;
108 typedef BOOL (WINAPI *PCMSCALLBACKA)(struct _tagCOLORMATCHSETUPA*,LPARAM);
109 typedef BOOL (WINAPI *PCMSCALLBACKW)(struct _tagCOLORMATCHSETUPW*,LPARAM);
111 typedef struct _tagCOLORMATCHSETUPA
113 DWORD dwSize;
114 DWORD dwVersion;
115 DWORD dwFlags;
116 HWND hwndOwner;
117 PCSTR pSourceName;
118 PCSTR pDisplayName;
119 PCSTR pPrinterName;
120 DWORD dwRenderIntent;
121 DWORD dwProofingIntent;
122 PSTR pMonitorProfile;
123 DWORD ccMonitorProfile;
124 PSTR pPrinterProfile;
125 DWORD ccPrinterProfile;
126 PSTR pTargetProfile;
127 DWORD ccTargetProfile;
128 DLGPROC lpfnHook;
129 LPARAM lParam;
130 PCMSCALLBACKA lpfnApplyCallback;
131 LPARAM lParamApplyCallback;
132 } COLORMATCHSETUPA, *PCOLORMATCHSETUPA, *LPCOLORMATCHSETUPA;
134 typedef struct _tagCOLORMATCHSETUPW
136 DWORD dwSize;
137 DWORD dwVersion;
138 DWORD dwFlags;
139 HWND hwndOwner;
140 PCWSTR pSourceName;
141 PCWSTR pDisplayName;
142 PCWSTR pPrinterName;
143 DWORD dwRenderIntent;
144 DWORD dwProofingIntent;
145 PWSTR pMonitorProfile;
146 DWORD ccMonitorProfile;
147 PWSTR pPrinterProfile;
148 DWORD ccPrinterProfile;
149 PWSTR pTargetProfile;
150 DWORD ccTargetProfile;
151 DLGPROC lpfnHook;
152 LPARAM lParam;
153 PCMSCALLBACKW lpfnApplyCallback;
154 LPARAM lParamApplyCallback;
155 } COLORMATCHSETUPW, *PCOLORMATCHSETUPW, *LPCOLORMATCHSETUPW;
158 BOOL WINAPI CloseColorProfile(HPROFILE);
159 BOOL WINAPI GetColorDirectoryA(PCSTR,PSTR,PDWORD);
160 BOOL WINAPI GetColorDirectoryW(PCWSTR,PWSTR,PDWORD);
161 #define GetColorDirectory WINELIB_NAME_AW(GetColorDirectory)
162 BOOL WINAPI InstallColorProfileA(PCSTR,PCSTR);
163 BOOL WINAPI InstallColorProfileW(PCWSTR,PCWSTR);
164 #define InstallColorProfile WINELIB_NAME_AW(InstallColorProfile)
165 HPROFILE WINAPI OpenColorProfileA(PPROFILE,DWORD,DWORD,DWORD);
166 HPROFILE WINAPI OpenColorProfileW(PPROFILE,DWORD,DWORD,DWORD);
167 #define OpenColorProfile WINELIB_NAME_AW(OpenColorProfile)
168 BOOL WINAPI SetupColorMatchingA(PCOLORMATCHSETUPA);
169 BOOL WINAPI SetupColorMatchingW(PCOLORMATCHSETUPW);
170 #define SetupColorMatching WINELIB_NAME_AW(SetupColorMatching)
171 BOOL WINAPI UninstallColorProfileA(PCSTR,PCSTR,BOOL);
172 BOOL WINAPI UninstallColorProfileW(PCWSTR,PCWSTR,BOOL);
173 #define UninstallColorProfile WINELIB_NAME_AW(UninstallColorProfile)
176 #define PROFILE_FILENAME 1
177 #define PROFILE_MEMBUFFER 2
179 #define PROFILE_READ 1
180 #define PROFILE_READWRITE 2
182 #ifdef __cplusplus
184 #endif
186 #endif /* __WINE_ICM_H */