blob: b4ea1b57df1b2af1b98e27adb1bd416343d4192e [file] [log] [blame]
Alexandre Julliard0799c1a2002-03-09 23:29:33 +00001/*
2 * Copyright (C) the Wine project
3 *
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.
8 *
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.
13 *
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
17 */
18
Francois Gouget6371e832000-10-13 23:12:19 +000019#ifndef _WINGDI_
20#define _WINGDI_
21#ifndef NOGDI
Veksler Michael1346a3c1998-12-15 11:15:35 +000022
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +000023#ifdef __cplusplus
24extern "C" {
25#endif
26
Paul Quinn1beaae51998-12-15 15:38:36 +000027typedef struct _ABCFLOAT {
28 FLOAT abcfA;
29 FLOAT abcfB;
30 FLOAT abcfC;
31} ABCFLOAT, *PABCFLOAT, *LPABCFLOAT;
32
Huw D M Daviesa9f55c41999-05-08 12:45:18 +000033#define FONTMAPPER_MAX 10
Veksler Michael1346a3c1998-12-15 11:15:35 +000034
35typedef struct
36{
37 WORD wFirst;
38 WORD wSecond;
Alexandre Julliarda3960291999-02-26 11:11:13 +000039 INT iKernAmount;
40} KERNINGPAIR, *LPKERNINGPAIR;
Veksler Michael1346a3c1998-12-15 11:15:35 +000041
Veksler Michael1346a3c1998-12-15 11:15:35 +000042typedef struct tagPIXELFORMATDESCRIPTOR {
43 WORD nSize;
44 WORD nVersion;
45 DWORD dwFlags;
46 BYTE iPixelType;
47 BYTE cColorBits;
48 BYTE cRedBits;
49 BYTE cRedShift;
50 BYTE cGreenBits;
51 BYTE cGreenShift;
52 BYTE cBlueBits;
53 BYTE cBlueShift;
54 BYTE cAlphaBits;
55 BYTE cAlphaShift;
56 BYTE cAccumBits;
57 BYTE cAccumRedBits;
58 BYTE cAccumGreenBits;
59 BYTE cAccumBlueBits;
60 BYTE cAccumAlphaBits;
61 BYTE cDepthBits;
62 BYTE cStencilBits;
63 BYTE cAuxBuffers;
64 BYTE iLayerType;
65 BYTE bReserved;
66 DWORD dwLayerMask;
67 DWORD dwVisibleMask;
68 DWORD dwDamageMask;
Francois Gouget6c97e452000-11-10 22:33:45 +000069} PIXELFORMATDESCRIPTOR, *PPIXELFORMATDESCRIPTOR, *LPPIXELFORMATDESCRIPTOR;
Veksler Michael1346a3c1998-12-15 11:15:35 +000070
Huw D M Daviesa9f55c41999-05-08 12:45:18 +000071#define PFD_TYPE_RGBA 0
72#define PFD_TYPE_COLORINDEX 1
73
74#define PFD_MAIN_PLANE 0
75#define PFD_OVERLAY_PLANE 1
76#define PFD_UNDERLAY_PLANE (-1)
77
78#define PFD_DOUBLEBUFFER 0x00000001
79#define PFD_STEREO 0x00000002
80#define PFD_DRAW_TO_WINDOW 0x00000004
81#define PFD_DRAW_TO_BITMAP 0x00000008
82#define PFD_SUPPORT_GDI 0x00000010
83#define PFD_SUPPORT_OPENGL 0x00000020
84#define PFD_GENERIC_FORMAT 0x00000040
85#define PFD_NEED_PALETTE 0x00000080
86#define PFD_NEED_SYSTEM_PALETTE 0x00000100
87#define PFD_SWAP_EXCHANGE 0x00000200
88#define PFD_SWAP_COPY 0x00000400
89#define PFD_SWAP_LAYER_BUFFERS 0x00000800
90#define PFD_GENERIC_ACCELERATED 0x00001000
91
92#define PFD_DEPTH_DONTCARE 0x20000000
93#define PFD_DOUBLEBUFFER_DONTCARE 0x40000000
94#define PFD_STEREO_DONTCARE 0x80000000
95
Paul Quinn1beaae51998-12-15 15:38:36 +000096typedef struct tagCOLORADJUSTMENT
97{
98 WORD caSize;
99 WORD caFlags;
100 WORD caIlluminantIndex;
101 WORD caRedGamma;
102 WORD caGreenGamma;
103 WORD caBlueGamma;
104 WORD caReferenceBlack;
105 WORD caReferenceWhite;
106 SHORT caContrast;
107 SHORT caBrightness;
108 SHORT caColorfulness;
109 SHORT caRedGreenTint;
110} COLORADJUSTMENT, *PCOLORADJUSTMENT, *LPCOLORADJUSTMENT;
Brad Pepers0bdff361999-02-09 15:37:16 +0000111
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000112#define CA_NEGATIVE 0x0001
113#define CA_LOG_FILTER 0x0002
114
115#define ILLUMINANT_DEVICE_DEFAULT 0
116#define ILLUMINANT_A 1
117#define ILLUMINANT_B 2
118#define ILLUMINANT_C 3
119#define ILLUMINANT_D50 4
120#define ILLUMINANT_D55 5
121#define ILLUMINANT_D65 6
122#define ILLUMINANT_D75 7
123#define ILLUMINANT_F2 8
124#define ILLUMINANT_MAX_INDEX ILLUMINANT_F2
125
126#define ILLUMINANT_TUNGSTEN ILLUMINANT_A
Vincent BĂ©ron9a624912002-05-31 23:06:46 +0000127#define ILLUMINANT_DAYLIGHT ILLUMINANT_C
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000128#define ILLUMINANT_FLUORESCENT ILLUMINANT_F2
129#define ILLUMINANT_NTSC ILLUMINANT_C
130
131#define RGB_GAMMA_MIN (WORD)02500
132#define RGB_GAMMA_MAX (WORD)65000
133
134#define REFERENCE_WHITE_MIN (WORD)6000
135#define REFERENCE_WHITE_MAX (WORD)10000
136#define REFERENCE_BLACK_MIN (WORD)0
137#define REFERENCE_BLACK_MAX (WORD)4000
138
139#define COLOR_ADJ_MIN ((SHORT)-100)
140#define COLOR_ADJ_MAX (SHORT) 100
141
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +0000142typedef LONG FXPT16DOT16, *LPFXPT16DOT16;
143typedef LONG FXPT2DOT30, *LPFXPT2DOT30;
144typedef LONG LCSCSTYPE;
145typedef LONG LCSGAMUTMATCH;
146
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000147#define LCS_CALIBRATED_RGB 0x00000000L
148#define LCS_DEVICE_RGB 0x00000001L
149#define LCS_DEVICE_CMYK 0x00000002L
150
151#define LCS_GM_BUSINESS 0x00000001L
152#define LCS_GM_GRAPHICS 0x00000002L
153#define LCS_GM_IMAGES 0x00000004L
154
155#define CM_OUT_OF_GAMUT 255
156#define CM_IN_GAMUT 0
157
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +0000158typedef struct tagCIEXYZ
159{
160 FXPT2DOT30 ciexyzX;
161 FXPT2DOT30 ciexyzY;
162 FXPT2DOT30 ciexyzZ;
163} CIEXYZ, *LPCIEXYZ;
164
165typedef struct tagCIEXYZTRIPLE
166{
167 CIEXYZ ciexyzRed;
168 CIEXYZ ciexyzGreen;
169 CIEXYZ ciexyzBlue;
170} CIEXYZTRIPLE, *LPCIEXYZTRIPLE;
171
172typedef struct tagLOGCOLORSPACEA
173{
174 DWORD lcsSignature;
175 DWORD lcsVersion;
176 DWORD lcsSize;
177 LCSCSTYPE lcsCSType;
178 LCSGAMUTMATCH lcsIntent;
179 CIEXYZTRIPLE lcsEndpoints;
180 DWORD lcsGammaRed;
181 DWORD lcsGammaGreen;
182 DWORD lcsGammaBlue;
Francois Gouget6371e832000-10-13 23:12:19 +0000183 CHAR lcsFilename[MAX_PATH];
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +0000184} LOGCOLORSPACEA, *LPLOGCOLORSPACEA;
185
186 typedef struct tagLOGCOLORSPACEW
187{
188 DWORD lcsSignature;
189 DWORD lcsVersion;
190 DWORD lcsSize;
191 LCSCSTYPE lcsCSType;
192 LCSGAMUTMATCH lcsIntent;
193 CIEXYZTRIPLE lcsEndpoints;
194 DWORD lcsGammaRed;
195 DWORD lcsGammaGreen;
196 DWORD lcsGammaBlue;
Francois Gouget6371e832000-10-13 23:12:19 +0000197 WCHAR lcsFilename[MAX_PATH];
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +0000198} LOGCOLORSPACEW, *LPLOGCOLORSPACEW;
199
200DECL_WINELIB_TYPE_AW(LPLOGCOLORSPACE)
201DECL_WINELIB_TYPE_AW(LOGCOLORSPACE)
202
Brad Pepers0bdff361999-02-09 15:37:16 +0000203#define DC_FIELDS 1
204#define DC_PAPERS 2
205#define DC_PAPERSIZE 3
206#define DC_MINEXTENT 4
207#define DC_MAXEXTENT 5
208#define DC_BINS 6
209#define DC_DUPLEX 7
210#define DC_SIZE 8
211#define DC_EXTRA 9
212#define DC_VERSION 10
213#define DC_DRIVER 11
214#define DC_BINNAMES 12
215#define DC_ENUMRESOLUTIONS 13
216#define DC_FILEDEPENDENCIES 14
217#define DC_TRUETYPE 15
218#define DC_PAPERNAMES 16
219#define DC_ORIENTATION 17
220#define DC_COPIES 18
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +0000221#define DC_BINADJUST 19
222#define DC_EMF_COMPLIANT 20
223#define DC_DATATYPE_PRODUCED 21
224#define DC_COLLATE 22
225#define DC_MANUFACTURER 23
226#define DC_MODEL 24
Huw D M Davies4e877161999-09-03 16:43:56 +0000227#define DC_PERSONALITY 25
228#define DC_PRINTRATE 26
229#define DC_PRINTRATEUNIT 27
230#define DC_PRINTERMEM 28
231#define DC_MEDIAREADY 29
232#define DC_STAPLE 30
233#define DC_PRINTRATEPPM 31
234#define DC_COLORDEVICE 32
235#define DC_NUP 33
Andrew John Hughesf1028ea2003-01-31 03:24:33 +0000236#define DC_MEDIATYPENAMES 34
237#define DC_MEDIATYPES 35
Brad Pepers0bdff361999-02-09 15:37:16 +0000238
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000239#define DCTT_BITMAP 0x00000001L
240#define DCTT_DOWNLOAD 0x00000002L
241#define DCTT_SUBDEV 0x00000004L
242#define DCTT_DOWNLOAD_OUTLINE 0x00000008L
243
244#define DCBA_FACEUPNONE 0x0000
245#define DCBA_FACEUPCENTER 0x0001
246#define DCBA_FACEUPLEFT 0x0002
247#define DCBA_FACEUPRIGHT 0x0003
248#define DCBA_FACEDOWNNONE 0x0100
249#define DCBA_FACEDOWNCENTER 0x0101
250#define DCBA_FACEDOWNLEFT 0x0102
251#define DCBA_FACEDOWNRIGHT 0x0103
252
Huw D M Davies4e877161999-09-03 16:43:56 +0000253#define PRINTRATEUNIT_PPM 1
254#define PRINTRATEUNIT_CPS 2
255#define PRINTRATEUNIT_LPM 3
256#define PRINTRATEUNIT_IPM 4
257
Brad Pepers0bdff361999-02-09 15:37:16 +0000258/* Flag returned from Escape QUERYDIBSUPPORT */
259#define QDI_SETDIBITS 1
260#define QDI_GETDIBITS 2
261#define QDI_DIBTOSCREEN 4
262#define QDI_STRETCHDIB 8
263
264
Brad Pepers0bdff361999-02-09 15:37:16 +0000265/* GDI Escape commands */
266#define NEWFRAME 1
267#define ABORTDOC 2
268#define NEXTBAND 3
269#define SETCOLORTABLE 4
270#define GETCOLORTABLE 5
271#define FLUSHOUTPUT 6
272#define DRAFTMODE 7
273#define QUERYESCSUPPORT 8
274#define SETABORTPROC 9
275#define STARTDOC 10
276#define ENDDOC 11
277#define GETPHYSPAGESIZE 12
278#define GETPRINTINGOFFSET 13
279#define GETSCALINGFACTOR 14
280#define MFCOMMENT 15
281#define GETPENWIDTH 16
282#define SETCOPYCOUNT 17
283#define SELECTPAPERSOURCE 18
284#define DEVICEDATA 19
285#define PASSTHROUGH 19
286#define GETTECHNOLGY 20
287#define GETTECHNOLOGY 20 /* yes, both of them */
288#define SETLINECAP 21
289#define SETLINEJOIN 22
290#define SETMITERLIMIT 23
291#define BANDINFO 24
292#define DRAWPATTERNRECT 25
293#define GETVECTORPENSIZE 26
294#define GETVECTORBRUSHSIZE 27
295#define ENABLEDUPLEX 28
296#define GETSETPAPERBINS 29
297#define GETSETPRINTORIENT 30
298#define ENUMPAPERBINS 31
299#define SETDIBSCALING 32
300#define EPSPRINTING 33
301#define ENUMPAPERMETRICS 34
302#define GETSETPAPERMETRICS 35
303#define POSTSCRIPT_DATA 37
304#define POSTSCRIPT_IGNORE 38
305#define MOUSETRAILS 39
306#define GETDEVICEUNITS 42
307
Jim Aston10141fe1999-04-25 12:31:20 +0000308#define DESKTOPVERTRES 117
309#define DESKTOPHORZRES 118
310
Brad Pepers0bdff361999-02-09 15:37:16 +0000311#define GETEXTENDEDTEXTMETRICS 256
312#define GETEXTENTTABLE 257
313#define GETPAIRKERNTABLE 258
314#define GETTRACKKERNTABLE 259
315#define EXTTEXTOUT 512
316#define GETFACENAME 513
317#define DOWNLOADFACE 514
318#define ENABLERELATIVEWIDTHS 768
319#define ENABLEPAIRKERNING 769
320#define SETKERNTRACK 770
321#define SETALLJUSTVALUES 771
322#define SETCHARSET 772
323
324#define STRETCHBLT 2048
325#define GETSETSCREENPARAMS 3072
326#define QUERYDIBSUPPORT 3073
327#define BEGIN_PATH 4096
328#define CLIP_TO_PATH 4097
329#define END_PATH 4098
330#define EXT_DEVICE_CAPS 4099
331#define RESTORE_CTM 4100
332#define SAVE_CTM 4101
333#define SET_ARC_DIRECTION 4102
334#define SET_BACKGROUND_COLOR 4103
335#define SET_POLY_MODE 4104
336#define SET_SCREEN_ANGLE 4105
337#define SET_SPREAD 4106
338#define TRANSFORM_CTM 4107
339#define SET_CLIP_BOX 4108
340#define SET_BOUNDS 4109
341#define SET_MIRROR_MODE 4110
342#define OPENCHANNEL 4110
343#define DOWNLOADHEADER 4111
344#define CLOSECHANNEL 4112
345#define POSTSCRIPT_PASSTHROUGH 4115
346#define ENCAPSULATED_POSTSCRIPT 4116
Marcus Meissnerf30b0352001-05-08 00:10:52 +0000347#define POSTSCRIPT_IDENTIFY 4117
348#define POSTSCRIPT_INJECTION 4118
349
350/* for POSTSCRIPT_IDENTIFY */
351#define PSIDENT_GDICENTRIC 0
352#define PSIDENT_PSCENTRIC 1
353
Brad Pepers0bdff361999-02-09 15:37:16 +0000354
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000355#define QDI_SETDIBITS 1
356#define QDI_GETDIBITS 2
357#define QDI_DIBTOSCREEN 4
358#define QDI_STRETCHDIB 8
359
Brad Pepers0bdff361999-02-09 15:37:16 +0000360/* Spooler Error Codes */
361#define SP_NOTREPORTED 0x4000
362#define SP_ERROR (-1)
363#define SP_APPABORT (-2)
364#define SP_USERABORT (-3)
365#define SP_OUTOFDISK (-4)
366#define SP_OUTOFMEMORY (-5)
367
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000368#define PR_JOBSTATUS 0
Brad Pepers0bdff361999-02-09 15:37:16 +0000369
Veksler Michael1346a3c1998-12-15 11:15:35 +0000370 /* Raster operations */
371
372#define R2_BLACK 1
373#define R2_NOTMERGEPEN 2
374#define R2_MASKNOTPEN 3
375#define R2_NOTCOPYPEN 4
376#define R2_MASKPENNOT 5
377#define R2_NOT 6
378#define R2_XORPEN 7
379#define R2_NOTMASKPEN 8
380#define R2_MASKPEN 9
381#define R2_NOTXORPEN 10
382#define R2_NOP 11
383#define R2_MERGENOTPEN 12
384#define R2_COPYPEN 13
385#define R2_MERGEPENNOT 14
386#define R2_MERGEPEN 15
387#define R2_WHITE 16
388
Kevin Koltzauf5fc26f2004-02-03 21:29:22 +0000389#define MAKEROP4(fore,back) (DWORD)((((back)<<8)&0xFF000000)|(fore))
390
Veksler Michael1346a3c1998-12-15 11:15:35 +0000391#define SRCCOPY 0xcc0020
392#define SRCPAINT 0xee0086
393#define SRCAND 0x8800c6
394#define SRCINVERT 0x660046
395#define SRCERASE 0x440328
396#define NOTSRCCOPY 0x330008
397#define NOTSRCERASE 0x1100a6
398#define MERGECOPY 0xc000ca
399#define MERGEPAINT 0xbb0226
400#define PATCOPY 0xf00021
401#define PATPAINT 0xfb0a09
402#define PATINVERT 0x5a0049
403#define DSTINVERT 0x550009
404#define BLACKNESS 0x000042
405#define WHITENESS 0xff0062
406
407 /* StretchBlt() modes */
408#define BLACKONWHITE 1
409#define WHITEONBLACK 2
410#define COLORONCOLOR 3
Huw D M Davies7603dea1999-04-25 09:24:23 +0000411#define HALFTONE 4
Vincent BĂ©ron9a624912002-05-31 23:06:46 +0000412#define MAXSTRETCHBLTMODE 4
Veksler Michael1346a3c1998-12-15 11:15:35 +0000413
414#define STRETCH_ANDSCANS BLACKONWHITE
415#define STRETCH_ORSCANS WHITEONBLACK
416#define STRETCH_DELETESCANS COLORONCOLOR
Huw D M Davies7603dea1999-04-25 09:24:23 +0000417#define STRETCH_HALFTONE HALFTONE
Veksler Michael1346a3c1998-12-15 11:15:35 +0000418
419 /* Colors */
420
Warren Baird93a86872003-02-12 01:15:27 +0000421#define RGB(r,g,b) ((COLORREF)((BYTE)(r) | ((BYTE)(g) << 8) | ((BYTE)(b) << 16)))
Veksler Michael1346a3c1998-12-15 11:15:35 +0000422#define PALETTERGB(r,g,b) (0x02000000 | RGB(r,g,b))
423#define PALETTEINDEX(i) ((COLORREF)(0x01000000 | (WORD)(i)))
424
Dimitrie O. Paun643b7c92003-09-11 20:40:57 +0000425#define GetRValue(rgb) ((BYTE) (rgb) )
426#define GetGValue(rgb) ((BYTE) ((rgb) >> 8))
427#define GetBValue(rgb) ((BYTE) ((rgb) >> 16))
Veksler Michael1346a3c1998-12-15 11:15:35 +0000428
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000429#define GetKValue(cmyk) ((BYTE) (cmyk) )
Vincent BĂ©ron95ee2e22002-09-16 22:35:24 +0000430#define GetYValue(cmyk) ((BYTE) ((cmyk) >> 8))
431#define GetMValue(cmyk) ((BYTE) ((cmyk) >> 16))
432#define GetCValue(cmyk) ((BYTE) ((cmyk) >> 24))
Veksler Michael1346a3c1998-12-15 11:15:35 +0000433
Juraj Hercekfc453962002-09-16 19:28:36 +0000434#define CMYK(c,m,y,k) ((COLORREF)((((BYTE)(k)|((WORD)((BYTE)(y))<<8))|(((DWORD)(BYTE)(m))<<16))|(((DWORD)(BYTE)(c))<<24)))
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000435
Marcus Meissner21973112004-01-13 05:20:17 +0000436/* ICM stuff */
Francois Gouget493cf882004-08-22 02:07:13 +0000437typedef INT (CALLBACK *ICMENUMPROCA)(LPSTR lpszFilename,LPARAM lParam);
438typedef INT (CALLBACK *ICMENUMPROCW)(LPWSTR lpszFilename,LPARAM lParam);
Marcus Meissner21973112004-01-13 05:20:17 +0000439DECL_WINELIB_TYPE_AW(ICMENUMPROC)
440
Veksler Michael1346a3c1998-12-15 11:15:35 +0000441
442#define ICM_OFF 1
443#define ICM_ON 2
444#define ICM_QUERY 3
445
446 /* Bounds Accumulation APIs */
447#define DCB_RESET 0x0001
448#define DCB_ACCUMULATE 0x0002
449#define DCB_DIRTY DCB_ACCUMULATE
450#define DCB_SET (DCB_RESET | DCB_ACCUMULATE)
451#define DCB_ENABLE 0x0004
452#define DCB_DISABLE 0x0008
453
Veksler Michael1346a3c1998-12-15 11:15:35 +0000454typedef struct
455{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000456 LONG paXCount;
457 LONG paYCount;
458 LONG paXExt;
459 LONG paYExt;
460 BYTE paRGBs;
Francois Gouget6c97e452000-11-10 22:33:45 +0000461} PELARRAY, *PPELARRAY, *LPPELARRAY;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000462
463 /* Bitmaps */
Veksler Michael1346a3c1998-12-15 11:15:35 +0000464
465typedef struct
466{
Alexandre Julliarda3960291999-02-26 11:11:13 +0000467 INT bmType;
468 INT bmWidth;
469 INT bmHeight;
470 INT bmWidthBytes;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000471 WORD bmPlanes;
472 WORD bmBitsPixel;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000473 LPVOID bmBits;
Francois Gouget6c97e452000-11-10 22:33:45 +0000474} BITMAP, *PBITMAP, *LPBITMAP;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000475
Veksler Michael1346a3c1998-12-15 11:15:35 +0000476
477 /* Brushes */
478
479typedef struct
Vincent BĂ©ron9a624912002-05-31 23:06:46 +0000480{
Alexandre Julliardf4bf9de2005-09-12 11:19:56 +0000481 UINT lbStyle;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000482 COLORREF lbColor;
Alexandre Julliardf4bf9de2005-09-12 11:19:56 +0000483 ULONG_PTR lbHatch;
Francois Gouget6c97e452000-11-10 22:33:45 +0000484} LOGBRUSH, *PLOGBRUSH, *LPLOGBRUSH;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000485
Alexandre Julliardf4bf9de2005-09-12 11:19:56 +0000486typedef struct
487{
488 UINT lbStyle;
489 COLORREF lbColor;
490 ULONG lbHatch;
491} LOGBRUSH32, *PLOGBRUSH32, *LPLOGBRUSH32;
492
Francois Gouget6c97e452000-11-10 22:33:45 +0000493typedef LOGBRUSH PATTERN, *PPATTERN, *LPPATTERN;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000494
Veksler Michael1346a3c1998-12-15 11:15:35 +0000495
496 /* Brush styles */
497#define BS_SOLID 0
498#define BS_NULL 1
499#define BS_HOLLOW 1
500#define BS_HATCHED 2
501#define BS_PATTERN 3
502#define BS_INDEXED 4
503#define BS_DIBPATTERN 5
504#define BS_DIBPATTERNPT 6
505#define BS_PATTERN8X8 7
506#define BS_DIBPATTERN8X8 8
507#define BS_MONOPATTERN 9
508
509 /* Hatch styles */
510#define HS_HORIZONTAL 0
511#define HS_VERTICAL 1
512#define HS_FDIAGONAL 2
513#define HS_BDIAGONAL 3
514#define HS_CROSS 4
515#define HS_DIAGCROSS 5
516
517 /* Fonts */
518
519#define LF_FACESIZE 32
520#define LF_FULLFACESIZE 64
521
522#define RASTER_FONTTYPE 0x0001
523#define DEVICE_FONTTYPE 0x0002
524#define TRUETYPE_FONTTYPE 0x0004
525
Jon Griffiths39bbcb42004-09-20 19:13:16 +0000526typedef struct tagLOGFONTA
Veksler Michael1346a3c1998-12-15 11:15:35 +0000527{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000528 LONG lfHeight;
529 LONG lfWidth;
530 LONG lfEscapement;
531 LONG lfOrientation;
532 LONG lfWeight;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000533 BYTE lfItalic;
534 BYTE lfUnderline;
535 BYTE lfStrikeOut;
536 BYTE lfCharSet;
537 BYTE lfOutPrecision;
538 BYTE lfClipPrecision;
539 BYTE lfQuality;
540 BYTE lfPitchAndFamily;
541 CHAR lfFaceName[LF_FACESIZE];
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +0000542} LOGFONTA, *PLOGFONTA, *LPLOGFONTA;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000543
Jon Griffiths39bbcb42004-09-20 19:13:16 +0000544typedef struct tagLOGFONTW
Veksler Michael1346a3c1998-12-15 11:15:35 +0000545{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000546 LONG lfHeight;
547 LONG lfWidth;
548 LONG lfEscapement;
549 LONG lfOrientation;
550 LONG lfWeight;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000551 BYTE lfItalic;
552 BYTE lfUnderline;
553 BYTE lfStrikeOut;
554 BYTE lfCharSet;
555 BYTE lfOutPrecision;
556 BYTE lfClipPrecision;
557 BYTE lfQuality;
558 BYTE lfPitchAndFamily;
559 WCHAR lfFaceName[LF_FACESIZE];
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +0000560} LOGFONTW, *PLOGFONTW, *LPLOGFONTW;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000561
562DECL_WINELIB_TYPE_AW(LOGFONT)
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +0000563DECL_WINELIB_TYPE_AW(PLOGFONT)
Veksler Michael1346a3c1998-12-15 11:15:35 +0000564DECL_WINELIB_TYPE_AW(LPLOGFONT)
565
566typedef struct
567{
Alexandre Julliarda3960291999-02-26 11:11:13 +0000568 LOGFONTA elfLogFont;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000569 BYTE elfFullName[LF_FULLFACESIZE];
570 BYTE elfStyle[LF_FACESIZE];
Alexandre Julliarda3960291999-02-26 11:11:13 +0000571} ENUMLOGFONTA, *LPENUMLOGFONTA;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000572
573typedef struct
574{
Alexandre Julliarda3960291999-02-26 11:11:13 +0000575 LOGFONTW elfLogFont;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000576 WCHAR elfFullName[LF_FULLFACESIZE];
577 WCHAR elfStyle[LF_FACESIZE];
Alexandre Julliarda3960291999-02-26 11:11:13 +0000578} ENUMLOGFONTW, *LPENUMLOGFONTW;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000579
Francois Gouget6c97e452000-11-10 22:33:45 +0000580DECL_WINELIB_TYPE_AW(ENUMLOGFONT)
581DECL_WINELIB_TYPE_AW(LPENUMLOGFONT)
582
Veksler Michael1346a3c1998-12-15 11:15:35 +0000583typedef struct
584{
Alexandre Julliarda3960291999-02-26 11:11:13 +0000585 LOGFONTA elfLogFont;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000586 BYTE elfFullName[LF_FULLFACESIZE];
587 BYTE elfStyle[LF_FACESIZE];
588 BYTE elfScript[LF_FACESIZE];
Alexandre Julliarda3960291999-02-26 11:11:13 +0000589} ENUMLOGFONTEXA,*LPENUMLOGFONTEXA;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000590
591typedef struct
592{
Alexandre Julliarda3960291999-02-26 11:11:13 +0000593 LOGFONTW elfLogFont;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000594 WCHAR elfFullName[LF_FULLFACESIZE];
595 WCHAR elfStyle[LF_FACESIZE];
596 WCHAR elfScript[LF_FACESIZE];
Alexandre Julliarda3960291999-02-26 11:11:13 +0000597} ENUMLOGFONTEXW,*LPENUMLOGFONTEXW;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000598
Francois Gouget6c97e452000-11-10 22:33:45 +0000599DECL_WINELIB_TYPE_AW(ENUMLOGFONTEX)
Veksler Michael1346a3c1998-12-15 11:15:35 +0000600DECL_WINELIB_TYPE_AW(LPENUMLOGFONTEX)
601
Douglas Ridgway4f7d9ed1998-12-18 17:38:39 +0000602/*
603 * The FONTSIGNATURE tells which Unicode ranges and which code pages
604 * have glyphs in a font.
605 *
606 * fsUsb 128-bit bitmap. The most significant bits are 10 (magic number).
607 * The remaining 126 bits map the Unicode ISO 10646 subranges
608 * for which the font provides glyphs.
609 *
610 * fsCsb 64-bit bitmap. The low 32 bits map the Windows codepages for
Vincent BĂ©ron9a624912002-05-31 23:06:46 +0000611 * which the font provides glyphs. The high 32 bits are for
Douglas Ridgway4f7d9ed1998-12-18 17:38:39 +0000612 * non Windows codepages.
613 */
Veksler Michael1346a3c1998-12-15 11:15:35 +0000614typedef struct
615{
616 DWORD fsUsb[4];
617 DWORD fsCsb[2];
Francois Gouget6c97e452000-11-10 22:33:45 +0000618} FONTSIGNATURE, *PFONTSIGNATURE, *LPFONTSIGNATURE;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000619
Vincent BĂ©ron9a624912002-05-31 23:06:46 +0000620typedef struct
Veksler Michael1346a3c1998-12-15 11:15:35 +0000621{
Alexandre Julliarda3960291999-02-26 11:11:13 +0000622 UINT ciCharset; /* character set */
623 UINT ciACP; /* ANSI code page */
Veksler Michael1346a3c1998-12-15 11:15:35 +0000624 FONTSIGNATURE fs;
Francois Gouget6c97e452000-11-10 22:33:45 +0000625} CHARSETINFO, *PCHARSETINFO, *LPCHARSETINFO;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000626
Douglas Ridgway4f7d9ed1998-12-18 17:38:39 +0000627/* Flags for TranslateCharsetInfo */
Douglas Ridgwayab9e8bc1999-01-01 18:41:22 +0000628#define TCI_SRCCHARSET 1
629#define TCI_SRCCODEPAGE 2
630#define TCI_SRCFONTSIG 3
Douglas Ridgway4f7d9ed1998-12-18 17:38:39 +0000631
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000632typedef struct
633{
634 DWORD lsUsb[4];
635 DWORD lsCsbDefault[2];
636 DWORD lsCsbSupported[2];
Patrik Stridvallba9dc782002-11-04 22:43:24 +0000637} LOCALESIGNATURE, *PLOCALESIGNATURE, *LPLOCALESIGNATURE;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000638
639
Veksler Michael1346a3c1998-12-15 11:15:35 +0000640/* Flags for ModifyWorldTransform */
641#define MWT_IDENTITY 1
642#define MWT_LEFTMULTIPLY 2
643#define MWT_RIGHTMULTIPLY 3
Patrik Stridvall564d3802000-10-22 23:55:15 +0000644#define MWT_MIN MWT_IDENTITY
Vincent BĂ©ron9a624912002-05-31 23:06:46 +0000645#define MWT_MAX MWT_RIGHTMULTIPLY
Veksler Michael1346a3c1998-12-15 11:15:35 +0000646
Alexandre Julliard8da12c41999-01-17 16:55:11 +0000647/* Object Definitions for EnumObjects() */
648#define OBJ_PEN 1
649#define OBJ_BRUSH 2
650#define OBJ_DC 3
651#define OBJ_METADC 4
652#define OBJ_PAL 5
653#define OBJ_FONT 6
654#define OBJ_BITMAP 7
655#define OBJ_REGION 8
656#define OBJ_METAFILE 9
657#define OBJ_MEMDC 10
658#define OBJ_EXTPEN 11
659#define OBJ_ENHMETADC 12
660#define OBJ_ENHMETAFILE 13
Andreas Mohree5445d2004-08-18 20:58:59 +0000661#define OBJ_COLORSPACE 14
Alexandre Julliard8da12c41999-01-17 16:55:11 +0000662
Jon Griffiths39bbcb42004-09-20 19:13:16 +0000663typedef struct tagXFORM
Veksler Michael1346a3c1998-12-15 11:15:35 +0000664{
665 FLOAT eM11;
666 FLOAT eM12;
667 FLOAT eM21;
668 FLOAT eM22;
669 FLOAT eDx;
670 FLOAT eDy;
Francois Gouget6c97e452000-11-10 22:33:45 +0000671} XFORM, *PXFORM, *LPXFORM;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000672
Veksler Michael1346a3c1998-12-15 11:15:35 +0000673 /* lfWeight values */
674#define FW_DONTCARE 0
675#define FW_THIN 100
676#define FW_EXTRALIGHT 200
677#define FW_ULTRALIGHT 200
678#define FW_LIGHT 300
679#define FW_NORMAL 400
680#define FW_REGULAR 400
681#define FW_MEDIUM 500
682#define FW_SEMIBOLD 600
683#define FW_DEMIBOLD 600
684#define FW_BOLD 700
685#define FW_EXTRABOLD 800
686#define FW_ULTRABOLD 800
687#define FW_HEAVY 900
688#define FW_BLACK 900
689
690 /* lfCharSet values */
Douglas Ridgwayab9e8bc1999-01-01 18:41:22 +0000691#define ANSI_CHARSET (BYTE)0 /* CP1252, ansi-0, iso8859-{1,15} */
692#define DEFAULT_CHARSET (BYTE)1
693#define SYMBOL_CHARSET (BYTE)2
694#define SHIFTJIS_CHARSET (BYTE)128 /* CP932 */
695#define HANGEUL_CHARSET (BYTE)129 /* CP949, ksc5601.1987-0 */
696#define HANGUL_CHARSET HANGEUL_CHARSET
697#define GB2312_CHARSET (BYTE)134 /* CP936, gb2312.1980-0 */
698#define CHINESEBIG5_CHARSET (BYTE)136 /* CP950, big5.et-0 */
699#define GREEK_CHARSET (BYTE)161 /* CP1253 */
700#define TURKISH_CHARSET (BYTE)162 /* CP1254, -iso8859-9 */
701#define HEBREW_CHARSET (BYTE)177 /* CP1255, -iso8859-8 */
702#define ARABIC_CHARSET (BYTE)178 /* CP1256, -iso8859-6 */
Nerijus Baliunasc4b8b262000-11-11 00:34:32 +0000703#define BALTIC_CHARSET (BYTE)186 /* CP1257, -iso8859-13 */
Huw D M Davies8da26fb2002-06-22 01:19:29 +0000704#define VIETNAMESE_CHARSET (BYTE)163 /* CP1258 */
Douglas Ridgwayab9e8bc1999-01-01 18:41:22 +0000705#define RUSSIAN_CHARSET (BYTE)204 /* CP1251, -iso8859-5 */
706#define EE_CHARSET (BYTE)238 /* CP1250, -iso8859-2 */
707#define EASTEUROPE_CHARSET EE_CHARSET
708#define THAI_CHARSET (BYTE)222 /* CP874, iso8859-11, tis620 */
709#define JOHAB_CHARSET (BYTE)130 /* korean (johab) CP1361 */
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000710#define MAC_CHARSET (BYTE)77
Douglas Ridgwayab9e8bc1999-01-01 18:41:22 +0000711#define OEM_CHARSET (BYTE)255
Veksler Michael1346a3c1998-12-15 11:15:35 +0000712/* I don't know if the values of *_CHARSET macros are defined in Windows
713 * or if we can choose them as we want. -- srtxg
714 */
Douglas Ridgwayab9e8bc1999-01-01 18:41:22 +0000715#define VISCII_CHARSET (BYTE)240 /* viscii1.1-1 */
716#define TCVN_CHARSET (BYTE)241 /* tcvn-0 */
717#define KOI8_CHARSET (BYTE)242 /* koi8-{r,u,ru} */
718#define ISO3_CHARSET (BYTE)243 /* iso8859-3 */
719#define ISO4_CHARSET (BYTE)244 /* iso8859-4 */
Nerijus Baliunasc4b8b262000-11-11 00:34:32 +0000720#define ISO10_CHARSET (BYTE)245 /* iso8859-10 */
721#define CELTIC_CHARSET (BYTE)246 /* iso8859-14 */
Veksler Michael1346a3c1998-12-15 11:15:35 +0000722
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000723#define FS_LATIN1 0x00000001L
724#define FS_LATIN2 0x00000002L
725#define FS_CYRILLIC 0x00000004L
726#define FS_GREEK 0x00000008L
727#define FS_TURKISH 0x00000010L
728#define FS_HEBREW 0x00000020L
729#define FS_ARABIC 0x00000040L
730#define FS_BALTIC 0x00000080L
731#define FS_VIETNAMESE 0x00000100L
732#define FS_THAI 0x00010000L
733#define FS_JISJAPAN 0x00020000L
734#define FS_CHINESESIMP 0x00040000L
735#define FS_WANSUNG 0x00080000L
736#define FS_CHINESETRAD 0x00100000L
737#define FS_JOHAB 0x00200000L
738#define FS_SYMBOL 0x80000000L
739
Veksler Michael1346a3c1998-12-15 11:15:35 +0000740 /* lfOutPrecision values */
741#define OUT_DEFAULT_PRECIS 0
742#define OUT_STRING_PRECIS 1
743#define OUT_CHARACTER_PRECIS 2
744#define OUT_STROKE_PRECIS 3
745#define OUT_TT_PRECIS 4
746#define OUT_DEVICE_PRECIS 5
747#define OUT_RASTER_PRECIS 6
748#define OUT_TT_ONLY_PRECIS 7
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000749#define OUT_OUTLINE_PRECIS 8
Veksler Michael1346a3c1998-12-15 11:15:35 +0000750
751 /* lfClipPrecision values */
752#define CLIP_DEFAULT_PRECIS 0x00
753#define CLIP_CHARACTER_PRECIS 0x01
754#define CLIP_STROKE_PRECIS 0x02
755#define CLIP_MASK 0x0F
756#define CLIP_LH_ANGLES 0x10
757#define CLIP_TT_ALWAYS 0x20
758#define CLIP_EMBEDDED 0x80
759
760 /* lfQuality values */
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000761#define DEFAULT_QUALITY 0
762#define DRAFT_QUALITY 1
763#define PROOF_QUALITY 2
764#define NONANTIALIASED_QUALITY 3
765#define ANTIALIASED_QUALITY 4
Veksler Michael1346a3c1998-12-15 11:15:35 +0000766
767 /* lfPitchAndFamily pitch values */
768#define DEFAULT_PITCH 0x00
769#define FIXED_PITCH 0x01
770#define VARIABLE_PITCH 0x02
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000771#define MONO_FONT 0x08
772
Veksler Michael1346a3c1998-12-15 11:15:35 +0000773#define FF_DONTCARE 0x00
774#define FF_ROMAN 0x10
775#define FF_SWISS 0x20
776#define FF_MODERN 0x30
777#define FF_SCRIPT 0x40
778#define FF_DECORATIVE 0x50
779
Jon Griffiths7c6ebdd2003-03-15 19:35:52 +0000780#ifndef _TEXTMETRIC_DEFINED
781#define _TEXTMETRIC_DEFINED
782
Jon Griffiths39bbcb42004-09-20 19:13:16 +0000783typedef struct tagTEXTMETRICA
Veksler Michael1346a3c1998-12-15 11:15:35 +0000784{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000785 LONG tmHeight;
786 LONG tmAscent;
787 LONG tmDescent;
788 LONG tmInternalLeading;
789 LONG tmExternalLeading;
790 LONG tmAveCharWidth;
791 LONG tmMaxCharWidth;
792 LONG tmWeight;
793 LONG tmOverhang;
794 LONG tmDigitizedAspectX;
795 LONG tmDigitizedAspectY;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000796 BYTE tmFirstChar;
797 BYTE tmLastChar;
798 BYTE tmDefaultChar;
799 BYTE tmBreakChar;
800 BYTE tmItalic;
801 BYTE tmUnderlined;
802 BYTE tmStruckOut;
803 BYTE tmPitchAndFamily;
804 BYTE tmCharSet;
Matthew Cline4ecb75b2000-02-12 19:26:07 +0000805} TEXTMETRICA, *LPTEXTMETRICA, *PTEXTMETRICA;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000806
Jon Griffiths39bbcb42004-09-20 19:13:16 +0000807typedef struct tagTEXTMETRICW
Veksler Michael1346a3c1998-12-15 11:15:35 +0000808{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000809 LONG tmHeight;
810 LONG tmAscent;
811 LONG tmDescent;
812 LONG tmInternalLeading;
813 LONG tmExternalLeading;
814 LONG tmAveCharWidth;
815 LONG tmMaxCharWidth;
816 LONG tmWeight;
817 LONG tmOverhang;
818 LONG tmDigitizedAspectX;
819 LONG tmDigitizedAspectY;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000820 WCHAR tmFirstChar;
821 WCHAR tmLastChar;
822 WCHAR tmDefaultChar;
823 WCHAR tmBreakChar;
824 BYTE tmItalic;
825 BYTE tmUnderlined;
826 BYTE tmStruckOut;
827 BYTE tmPitchAndFamily;
828 BYTE tmCharSet;
Matthew Cline4ecb75b2000-02-12 19:26:07 +0000829} TEXTMETRICW, *LPTEXTMETRICW, *PTEXTMETRICW;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000830
831DECL_WINELIB_TYPE_AW(TEXTMETRIC)
Matthew Cline4ecb75b2000-02-12 19:26:07 +0000832DECL_WINELIB_TYPE_AW(PTEXTMETRIC)
Veksler Michael1346a3c1998-12-15 11:15:35 +0000833DECL_WINELIB_TYPE_AW(LPTEXTMETRIC)
Jon Griffiths7c6ebdd2003-03-15 19:35:52 +0000834#endif /* _TEXTMETRIC_DEFINED */
Veksler Michael1346a3c1998-12-15 11:15:35 +0000835
836
837typedef struct tagPANOSE
838{
839 BYTE bFamilyType;
840 BYTE bSerifStyle;
841 BYTE bWeight;
842 BYTE bProportion;
843 BYTE bContrast;
844 BYTE bStrokeVariation;
845 BYTE bArmStyle;
846 BYTE bLetterform;
847 BYTE bMidline;
848 BYTE bXHeight;
Francois Gouget6c97e452000-11-10 22:33:45 +0000849} PANOSE, *LPPANOSE;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000850
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000851#define PANOSE_COUNT 10
852
Huw D M Daviesd44b4282002-02-08 17:10:18 +0000853#define PAN_FAMILYTYPE_INDEX 0
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000854#define PAN_SERIFSTYLE_INDEX 1
855#define PAN_WEIGTH_INDEX 2
856#define PAN_PROPORTION_INDEX 3
857#define PAN_CONTRAST_INDEX 4
858#define PAN_STROKEVARIATION_INDEX 5
859#define PAN_ARMSTYLE_INDEX 6
860#define PAN_LETTERFORM_INDEX 7
861#define PAN_MIDLINE_INDEX 8
862#define PAN_XHEIGHT_INDEX 9
863
Huw D M Daviesad1e06e1999-04-24 11:47:26 +0000864#define PAN_CULTURE_LATIN 0
865
866#define PAN_ANY 0
867#define PAN_NO_FIT 1
868
869#define PAN_FAMILY_TEXT_DISPLAY 2
870#define PAN_FAMILY_SCRIPT 3
871#define PAN_FAMILY_DECORATIVE 4
872#define PAN_FAMILY_PICTORIAL 5
873
874#define PAN_SERIF_COVE 2
875#define PAN_SERIF_OBTUSE_COVE 3
876#define PAN_SERIF_SQUARE_COVE 4
877#define PAN_SERIF_OBTUSE_SQUARE_COVE 5
878#define PAN_SERIF_SQUARE 6
879#define PAN_SERIF_THIN 7
880#define PAN_SERIF_BONE 8
881#define PAN_SERIF_EXAGGERATED 9
882#define PAN_SERIF_TRIANGLE 10
883#define PAN_SERIF_NORMAL_SANS 11
884#define PAN_SERIF_OBTUSE_SANS 12
885#define PAN_SERIF_PERP_SANS 13
886#define PAN_SERIF_FLARED 14
887#define PAN_SERIF_ROUNDED 15
888
889#define PAN_WEIGHT_VERY_LIGHT 2
890#define PAN_WEIGHT_LIGHT 3
891#define PAN_WEIGHT_THIN 4
892#define PAN_WEIGHT_BOOK 5
893#define PAN_WEIGHT_MEDIUM 6
894#define PAN_WEIGHT_DEMI 7
895#define PAN_WEIGHT_BOLD 8
896#define PAN_WEIGHT_HEAVY 9
897#define PAN_WEIGHT_BLACK 10
898#define PAN_WEIGHT_NORD 11
899
900#define PAN_PROP_OLD_STYLE 2
901#define PAN_PROP_MODERN 3
902#define PAN_PROP_EVEN_WIDTH 4
903#define PAN_PROP_EXPANDED 5
904#define PAN_PROP_CONDENSED 6
905#define PAN_PROP_VERY_EXPANDED 7
906#define PAN_PROP_VERY_CONDENSED 8
907#define PAN_PROP_MONOSPACED 9
908
909#define PAN_CONTRAST_NONE 2
910#define PAN_CONTRAST_VERY_LOW 3
911#define PAN_CONTRAST_LOW 4
912#define PAN_CONTRAST_MEDIUM_LOW 5
913#define PAN_CONTRAST_MEDIUM 6
914#define PAN_CONTRAST_MEDIUM_HIGH 7
915#define PAN_CONTRAST_HIGH 8
916#define PAN_CONTRAST_VERY_HIGH 9
917
918#define PAN_STROKE_GRADUAL_DIAG 2
919#define PAN_STROKE_GRADUAL_TRAN 3
920#define PAN_STROKE_GRADUAL_VERT 4
921#define PAN_STROKE_GRADUAL_HORZ 5
922#define PAN_STROKE_RAPID_VERT 6
923#define PAN_STROKE_RAPID_HORZ 7
924#define PAN_STROKE_INSTANT_VERT 8
925
926#define PAN_STRAIGHT_ARMS_HORZ 2
927#define PAN_STRAIGHT_ARMS_WEDGE 3
928#define PAN_STRAIGHT_ARMS_VERT 4
929#define PAN_STRAIGHT_ARMS_SINGLE_SERIF 5
930#define PAN_STRAIGHT_ARMS_DOUBLE_SERIF 6
931#define PAN_BENT_ARMS_HORZ 7
932#define PAN_BENT_ARMS_WEDGE 8
933#define PAN_BENT_ARMS_VERT 9
934#define PAN_BENT_ARMS_SINGLE_SERIF 10
935#define PAN_BENT_ARMS_DOUBLE_SERIF 11
936
937#define PAN_LETT_NORMAL_COMPACT 2
938#define PAN_LETT_NORMAL_WEIGHTED 3
939#define PAN_LETT_NORMAL_BOXED 4
940#define PAN_LETT_NORMAL_FLATTENED 5
941#define PAN_LETT_NORMAL_ROUNDED 6
942#define PAN_LETT_NORMAL_OFF_CENTER 7
943#define PAN_LETT_NORMAL_SQUARE 8
944#define PAN_LETT_OBLIQUE_COMPACT 9
945#define PAN_LETT_OBLIQUE_WEIGHTED 10
946#define PAN_LETT_OBLIQUE_BOXED 11
947#define PAN_LETT_OBLIQUE_FLATTENED 12
948#define PAN_LETT_OBLIQUE_ROUNDED 13
949#define PAN_LETT_OBLIQUE_OFF_CENTER 14
950#define PAN_LETT_OBLIQUE_SQUARE 15
951
952#define PAN_MIDLINE_STANDARD_TRIMMED 2
953#define PAN_MIDLINE_STANDARD_POINTED 3
954#define PAN_MIDLINE_STANDARD_SERIFED 4
955#define PAN_MIDLINE_HIGH_TRIMMED 5
956#define PAN_MIDLINE_HIGH_POINTED 6
957#define PAN_MIDLINE_HIGH_SERIFED 7
958#define PAN_MIDLINE_CONSTANT_TRIMMED 8
959#define PAN_MIDLINE_CONSTANT_POINTED 9
960#define PAN_MIDLINE_CONSTANT_SERIFED 10
961#define PAN_MIDLINE_LOW_TRIMMED 11
962#define PAN_MIDLINE_LOW_POINTED 12
963#define PAN_MIDLINE_LOW_SERIFED 13
964
965#define PAN_XHEIGHT_CONSTANT_SMALL 2
966#define PAN_XHEIGHT_CONSTANT_STANDARD 3
967#define PAN_XHEIGHT_CONSTANT_LARGE 4
968#define PAN_XHEIGHT_DUCKING_SMALL 5
969#define PAN_XHEIGHT_DUCKING_STANDARD 6
970#define PAN_XHEIGHT_DUCKING_LARGE 7
971
972#define ELF_VENDOR_SIZE 4
973typedef struct
974{
975 LOGFONTA elfLogFont;
976 BYTE elfFullName[LF_FULLFACESIZE];
977 BYTE elfStyle[LF_FACESIZE];
978 DWORD elfVersion;
979 DWORD elfStyleSize;
980 DWORD elfMatch;
981 DWORD elfReserved;
982 BYTE elfVendorId[ELF_VENDOR_SIZE];
983 DWORD elfCulture;
984 PANOSE elfPanose;
Francois Gouget6c97e452000-11-10 22:33:45 +0000985} EXTLOGFONTA, *PEXTLOGFONTA, *LPEXTLOGFONTA;
Huw D M Daviesad1e06e1999-04-24 11:47:26 +0000986
987typedef struct
988{
989 LOGFONTW elfLogFont;
990 WCHAR elfFullName[LF_FULLFACESIZE];
991 WCHAR elfStyle[LF_FACESIZE];
992 DWORD elfVersion;
993 DWORD elfStyleSize;
994 DWORD elfMatch;
995 DWORD elfReserved;
996 BYTE elfVendorId[ELF_VENDOR_SIZE];
997 DWORD elfCulture;
998 PANOSE elfPanose;
Francois Gouget6c97e452000-11-10 22:33:45 +0000999} EXTLOGFONTW, *PEXTLOGFONTW, *LPEXTLOGFONTW;
Huw D M Daviesad1e06e1999-04-24 11:47:26 +00001000
1001DECL_WINELIB_TYPE_AW(EXTLOGFONT)
1002DECL_WINELIB_TYPE_AW(PEXTLOGFONT)
Francois Gouget6c97e452000-11-10 22:33:45 +00001003DECL_WINELIB_TYPE_AW(LPEXTLOGFONT)
Veksler Michael1346a3c1998-12-15 11:15:35 +00001004
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001005#define ELF_VERSION 0
1006#define ELF_CULTURE_LATIN 0
1007
Alexandre Julliarda3960291999-02-26 11:11:13 +00001008typedef struct _OUTLINETEXTMETRICA
Veksler Michael1346a3c1998-12-15 11:15:35 +00001009{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001010 UINT otmSize;
1011 TEXTMETRICA otmTextMetrics;
Huw D M Davies916a1a62001-03-13 23:31:40 +00001012 BYTE otmFiller;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001013 PANOSE otmPanoseNumber;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001014 UINT otmfsSelection;
1015 UINT otmfsType;
1016 INT otmsCharSlopeRise;
1017 INT otmsCharSlopeRun;
1018 INT otmItalicAngle;
1019 UINT otmEMSquare;
1020 INT otmAscent;
1021 INT otmDescent;
1022 UINT otmLineGap;
1023 UINT otmsCapEmHeight;
1024 UINT otmsXHeight;
1025 RECT otmrcFontBox;
1026 INT otmMacAscent;
1027 INT otmMacDescent;
1028 UINT otmMacLineGap;
1029 UINT otmusMinimumPPEM;
1030 POINT otmptSubscriptSize;
1031 POINT otmptSubscriptOffset;
1032 POINT otmptSuperscriptSize;
1033 POINT otmptSuperscriptOffset;
1034 UINT otmsStrikeoutSize;
1035 INT otmsStrikeoutPosition;
1036 INT otmsUnderscoreSize;
1037 INT otmsUnderscorePosition;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001038 LPSTR otmpFamilyName;
1039 LPSTR otmpFaceName;
1040 LPSTR otmpStyleName;
1041 LPSTR otmpFullName;
Francois Gouget6c97e452000-11-10 22:33:45 +00001042} OUTLINETEXTMETRICA, *POUTLINETEXTMETRICA, *LPOUTLINETEXTMETRICA;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001043
Alexandre Julliarda3960291999-02-26 11:11:13 +00001044typedef struct _OUTLINETEXTMETRICW
Veksler Michael1346a3c1998-12-15 11:15:35 +00001045{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001046 UINT otmSize;
1047 TEXTMETRICW otmTextMetrics;
Huw D M Davies916a1a62001-03-13 23:31:40 +00001048 BYTE otmFiller;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001049 PANOSE otmPanoseNumber;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001050 UINT otmfsSelection;
1051 UINT otmfsType;
1052 INT otmsCharSlopeRise;
1053 INT otmsCharSlopeRun;
1054 INT otmItalicAngle;
1055 UINT otmEMSquare;
1056 INT otmAscent;
1057 INT otmDescent;
1058 UINT otmLineGap;
1059 UINT otmsCapEmHeight;
1060 UINT otmsXHeight;
1061 RECT otmrcFontBox;
1062 INT otmMacAscent;
1063 INT otmMacDescent;
1064 UINT otmMacLineGap;
1065 UINT otmusMinimumPPEM;
1066 POINT otmptSubscriptSize;
1067 POINT otmptSubscriptOffset;
1068 POINT otmptSuperscriptSize;
1069 POINT otmptSuperscriptOffset;
1070 UINT otmsStrikeoutSize;
1071 INT otmsStrikeoutPosition;
1072 INT otmsUnderscoreSize;
1073 INT otmsUnderscorePosition;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001074 LPSTR otmpFamilyName;
1075 LPSTR otmpFaceName;
1076 LPSTR otmpStyleName;
1077 LPSTR otmpFullName;
Francois Gouget6c97e452000-11-10 22:33:45 +00001078} OUTLINETEXTMETRICW, *POUTLINETEXTMETRICW, *LPOUTLINETEXTMETRICW;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001079
Veksler Michael1346a3c1998-12-15 11:15:35 +00001080DECL_WINELIB_TYPE_AW(OUTLINETEXTMETRIC)
Francois Gouget6c97e452000-11-10 22:33:45 +00001081DECL_WINELIB_TYPE_AW(POUTLINETEXTMETRIC)
Veksler Michael1346a3c1998-12-15 11:15:35 +00001082DECL_WINELIB_TYPE_AW(LPOUTLINETEXTMETRIC)
1083
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001084typedef struct
1085{
1086 INT x;
1087 INT y;
1088 UINT n;
1089 LPCSTR lpstr;
1090 UINT uiFlags;
1091 RECT rcl;
1092 INT *pdx;
Francois Gouget6c97e452000-11-10 22:33:45 +00001093} POLYTEXTA, *PPOLYTEXTA, *LPPOLYTEXTA;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001094
1095typedef struct
1096{
1097 INT x;
1098 INT y;
1099 UINT n;
1100 LPCWSTR lpstr;
1101 UINT uiFlags;
1102 RECT rcl;
1103 INT *pdx;
Francois Gouget6c97e452000-11-10 22:33:45 +00001104} POLYTEXTW, *PPOLYTEXTW, *LPPOLYTEXTW;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001105
1106DECL_WINELIB_TYPE_AW(POLYTEXT)
1107DECL_WINELIB_TYPE_AW(PPOLYTEXT)
Francois Gouget6c97e452000-11-10 22:33:45 +00001108DECL_WINELIB_TYPE_AW(LPPOLYTEXT)
Veksler Michael1346a3c1998-12-15 11:15:35 +00001109
1110
1111/* ntmFlags field flags */
1112#define NTM_REGULAR 0x00000040L
1113#define NTM_BOLD 0x00000020L
1114#define NTM_ITALIC 0x00000001L
1115
Rein Klazes62fb1912003-12-30 22:08:17 +00001116#define NTM_NONNEGATIVE_AC 0x00010000
1117#define NTM_PS_OPENTYPE 0x00020000
1118#define NTM_TT_OPENTYPE 0x00040000
1119#define NTM_MULTIPLEMASTER 0x00080000
1120#define NTM_TYPE1 0x00100000
1121#define NTM_DSIG 0x00200000
1122
1123
Veksler Michael1346a3c1998-12-15 11:15:35 +00001124typedef struct
1125{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001126 LONG tmHeight;
1127 LONG tmAscent;
1128 LONG tmDescent;
1129 LONG tmInternalLeading;
1130 LONG tmExternalLeading;
1131 LONG tmAveCharWidth;
1132 LONG tmMaxCharWidth;
1133 LONG tmWeight;
1134 LONG tmOverhang;
1135 LONG tmDigitizedAspectX;
1136 LONG tmDigitizedAspectY;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001137 BYTE tmFirstChar;
1138 BYTE tmLastChar;
1139 BYTE tmDefaultChar;
1140 BYTE tmBreakChar;
1141 BYTE tmItalic;
1142 BYTE tmUnderlined;
1143 BYTE tmStruckOut;
1144 BYTE tmPitchAndFamily;
1145 BYTE tmCharSet;
1146 DWORD ntmFlags;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001147 UINT ntmSizeEM;
1148 UINT ntmCellHeight;
1149 UINT ntmAvgWidth;
Francois Gouget6c97e452000-11-10 22:33:45 +00001150} NEWTEXTMETRICA, *PNEWTEXTMETRICA, *LPNEWTEXTMETRICA;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001151
1152typedef struct
1153{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001154 LONG tmHeight;
1155 LONG tmAscent;
1156 LONG tmDescent;
1157 LONG tmInternalLeading;
1158 LONG tmExternalLeading;
1159 LONG tmAveCharWidth;
1160 LONG tmMaxCharWidth;
1161 LONG tmWeight;
1162 LONG tmOverhang;
1163 LONG tmDigitizedAspectX;
1164 LONG tmDigitizedAspectY;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001165 WCHAR tmFirstChar;
1166 WCHAR tmLastChar;
1167 WCHAR tmDefaultChar;
1168 WCHAR tmBreakChar;
1169 BYTE tmItalic;
1170 BYTE tmUnderlined;
1171 BYTE tmStruckOut;
1172 BYTE tmPitchAndFamily;
1173 BYTE tmCharSet;
1174 DWORD ntmFlags;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001175 UINT ntmSizeEM;
1176 UINT ntmCellHeight;
1177 UINT ntmAvgWidth;
Francois Gouget6c97e452000-11-10 22:33:45 +00001178} NEWTEXTMETRICW, *PNEWTEXTMETRICW, *LPNEWTEXTMETRICW;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001179
1180DECL_WINELIB_TYPE_AW(NEWTEXTMETRIC)
Francois Gouget6c97e452000-11-10 22:33:45 +00001181DECL_WINELIB_TYPE_AW(PNEWTEXTMETRIC)
Veksler Michael1346a3c1998-12-15 11:15:35 +00001182DECL_WINELIB_TYPE_AW(LPNEWTEXTMETRIC)
1183
1184typedef struct
1185{
Huw D M Davies26ee2ca2001-04-04 00:09:53 +00001186 NEWTEXTMETRICA ntmTm;
1187 FONTSIGNATURE ntmFontSig;
Patrik Stridvallba9dc782002-11-04 22:43:24 +00001188} NEWTEXTMETRICEXA;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001189
1190typedef struct
1191{
Huw D M Davies26ee2ca2001-04-04 00:09:53 +00001192 NEWTEXTMETRICW ntmTm;
1193 FONTSIGNATURE ntmFontSig;
Patrik Stridvallba9dc782002-11-04 22:43:24 +00001194} NEWTEXTMETRICEXW;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001195
1196DECL_WINELIB_TYPE_AW(NEWTEXTMETRICEX)
Veksler Michael1346a3c1998-12-15 11:15:35 +00001197
Dimitrie O. Pauncef59612003-01-03 19:12:55 +00001198#if defined(STRICT)
Patrik Stridvallc99c0222002-11-13 04:13:42 +00001199
1200#if !defined(NOTEXTMETRIC)
1201typedef int (CALLBACK *OLDFONTENUMPROCA)(const LOGFONTA *, const TEXTMETRICA *, DWORD, LPARAM);
1202typedef int (CALLBACK *OLDFONTENUMPROCW)(const LOGFONTW *, const TEXTMETRICW *, DWORD, LPARAM);
1203#else /* !defined(NOTEXTMETRIC) */
1204typedef int (CALLBACK *OLDFONTENUMPROCA)(const LOGFONTA *, const VOID *, DWORD, LPARAM);
1205typedef int (CALLBACK *OLDFONTENUMPROCW)(const LOGFONTW *, const VOID *, DWORD, LPARAM);
1206#endif /* !defined(NOTEXTMETRIC) */
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001207DECL_WINELIB_TYPE_AW(OLDFONTENUMPROC)
1208
Francois Gouget6c97e452000-11-10 22:33:45 +00001209typedef OLDFONTENUMPROCA FONTENUMPROCA;
1210typedef OLDFONTENUMPROCW FONTENUMPROCW;
1211DECL_WINELIB_TYPE_AW(FONTENUMPROC)
1212
Patrik Stridvallc99c0222002-11-13 04:13:42 +00001213typedef INT (CALLBACK *GOBJENUMPROC)(LPVOID, LPARAM);
1214typedef VOID (CALLBACK *LINEDDAPROC)(INT, INT, LPARAM);
Veksler Michael1346a3c1998-12-15 11:15:35 +00001215
Dimitrie O. Pauncef59612003-01-03 19:12:55 +00001216#else /* defined(STRICT) */
Patrik Stridvallc99c0222002-11-13 04:13:42 +00001217
1218typedef FARPROC OLDFONTENUMPROC;
1219
1220typedef FARPROC FONTENUMPROCA;
1221typedef FARPROC FONTENUMPROCW;
1222DECL_WINELIB_TYPE_AW(FONTENUMPROC)
1223
1224typedef FARPROC GOBJENUMPROC;
1225typedef FARPROC LINEDDAPROC;
1226
Dimitrie O. Pauncef59612003-01-03 19:12:55 +00001227#endif /* defined(STRICT) */
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001228
Veksler Michael1346a3c1998-12-15 11:15:35 +00001229 /* tmPitchAndFamily bits */
1230#define TMPF_FIXED_PITCH 1 /* means variable pitch */
1231#define TMPF_VECTOR 2
1232#define TMPF_TRUETYPE 4
1233#define TMPF_DEVICE 8
1234
1235 /* Text alignment */
1236#define TA_NOUPDATECP 0x00
1237#define TA_UPDATECP 0x01
1238#define TA_LEFT 0x00
1239#define TA_RIGHT 0x02
1240#define TA_CENTER 0x06
1241#define TA_TOP 0x00
1242#define TA_BOTTOM 0x08
1243#define TA_BASELINE 0x18
Francois Gouget6c97e452000-11-10 22:33:45 +00001244#define TA_RTLREADING 0x100
1245#define TA_MASK TA_BASELINE+TA_CENTER+TA_UPDATECP+TA_RTLREADING
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001246
1247#define VTA_BASELINE TA_BASELINE
1248#define VTA_LEFT TA_BOTTOM
1249#define VTA_RIGHT TA_TOP
1250#define VTA_CENTER TA_CENTER
1251#define VTA_BOTTOM TA_RIGHT
1252#define VTA_TOP TA_LEFT
1253
Veksler Michael1346a3c1998-12-15 11:15:35 +00001254
1255 /* ExtTextOut() parameters */
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001256#define ETO_GRAYED 0x0001
1257#define ETO_OPAQUE 0x0002
1258#define ETO_CLIPPED 0x0004
1259#define ETO_GLYPH_INDEX 0x0010
Matthew Lake18727102000-07-08 18:31:43 +00001260#define ETO_RTLREADING 0x0080
Vitaly Lipatov05903432005-01-05 13:24:52 +00001261#define ETO_NUMERICSLOCAL 0x0400
1262#define ETO_NUMERICSLATIN 0x0800
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001263#define ETO_IGNORELANGUAGE 0x1000
Vitaly Lipatov05903432005-01-05 13:24:52 +00001264#define ETO_PDY 0x2000
Veksler Michael1346a3c1998-12-15 11:15:35 +00001265
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001266#define ASPECT_FILTERING 0x0001
Veksler Michael1346a3c1998-12-15 11:15:35 +00001267
Dmitry Timoshkov2903ca12002-04-03 20:41:14 +00001268 /* for GetGlyphIndices() */
1269#define GGI_MARK_NONEXISTING_GLYPHS 0x0001
1270
Veksler Michael1346a3c1998-12-15 11:15:35 +00001271typedef struct
1272{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001273 UINT gmBlackBoxX;
1274 UINT gmBlackBoxY;
1275 POINT gmptGlyphOrigin;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001276 SHORT gmCellIncX;
1277 SHORT gmCellIncY;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001278} GLYPHMETRICS, *LPGLYPHMETRICS;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001279
Veksler Michael1346a3c1998-12-15 11:15:35 +00001280
1281#define GGO_METRICS 0
1282#define GGO_BITMAP 1
1283#define GGO_NATIVE 2
Huw D M Davies8da26fb2002-06-22 01:19:29 +00001284#define GGO_BEZIER 3
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001285#define GGO_GRAY2_BITMAP 4
1286#define GGO_GRAY4_BITMAP 5
1287#define GGO_GRAY8_BITMAP 6
1288#define GGO_GLYPH_INDEX 0x80
Vincent BĂ©ron9a624912002-05-31 23:06:46 +00001289
Veksler Michael1346a3c1998-12-15 11:15:35 +00001290typedef struct
1291{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001292 WORD fract;
1293 SHORT value;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001294} FIXED;
1295
Paul Quinn89b21b41999-03-14 13:47:00 +00001296typedef struct tagPOINTFX
1297{
1298 FIXED x;
1299 FIXED y;
1300} POINTFX, *LPPOINTFX;
1301
1302typedef struct tagTTPOLYCURVE
1303{
1304 WORD wType;
1305 WORD cpfx;
1306 POINTFX apfx[1];
1307} TTPOLYCURVE, *LPTTPOLYCURVE;
1308
1309typedef struct tagTTPOLYGONHEADER
1310{
1311 DWORD cb;
1312 DWORD dwType;
1313 POINTFX pfxStart;
1314} TTPOLYGONHEADER, *LPTTPOLYGONHEADER;
1315
Veksler Michael1346a3c1998-12-15 11:15:35 +00001316typedef struct
1317{
1318 FIXED eM11;
1319 FIXED eM12;
1320 FIXED eM21;
1321 FIXED eM22;
1322} MAT2, *LPMAT2;
1323
1324 /* for GetCharABCWidths() */
1325typedef struct
1326{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001327 INT abcA;
1328 UINT abcB;
1329 INT abcC;
Francois Gouget6c97e452000-11-10 22:33:45 +00001330} ABC, *PABC, *LPABC;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001331
Veksler Michael1346a3c1998-12-15 11:15:35 +00001332
1333 /* for GetCharacterPlacement () */
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001334
1335#define GCP_DBCS 0x0001
1336#define GCP_REORDER 0x0002
1337#define GCP_USEKERNING 0x0008
1338#define GCP_GLYPHSHAPE 0x0010
1339#define GCP_LIGATE 0x0020
1340#define GCP_DIACRITIC 0x0100
1341#define GCP_KASHIDA 0x0200
1342#define GCP_ERROR 0x8000
1343#define FLI_MASK 0x103b
1344#define GCP_JUSTIFY 0x00010000L
1345#define FLI_GLYPHS 0x00040000L
1346#define GCP_CLASSIN 0x00080000L
1347#define GCP_MAXEXTENT 0x00100000L
1348#define GCP_JUSTIFYIN 0x00200000L
1349#define GCP_DISPLAYZWG 0x00400000L
1350#define GCP_SYMSWAPOFF 0x00800000L
1351#define GCP_NUMERICOVERRIDE 0x01000000L
1352#define GCP_NEUTRALOVERRIDE 0x02000000L
1353#define GCP_NUMERICSLATIN 0x04000000L
1354#define GCP_NUMERICSLOCAL 0x08000000L
1355
1356#define GCPCLASS_LATIN 1
1357#define GCPCLASS_HEBREW 2
1358#define GCPCLASS_ARABIC 3
1359#define GCPCLASS_NEUTRAL 4
1360#define GCPCLASS_LOCALNUMBER 5
1361#define GCPCLASS_LATINNUMBER 6
1362#define GCPCLASS_LATINNUMERICTERMINATOR 7
1363#define GCPCLASS_LATINNUMERICSEPARATOR 8
1364#define GCPCLASS_NUMERICSEPARATOR 9
1365#define GCPCLASS_PREBOUNDLTR 0x80
1366#define GCPCLASS_PREBOUNDRLT 0x40
1367#define GCPCLASS_POSTBOUNDLTR 0x20
1368#define GCPCLASS_POSTBOUNDRTL 0x10
1369
1370#define GCPGLYPH_LINKBEFORE 0x8000
1371#define GCPGLYPH_LINKAFTER 0x4000
1372
1373
1374typedef struct tagGCP_RESULTSA{
Veksler Michael1346a3c1998-12-15 11:15:35 +00001375 DWORD lStructSize;
1376 LPSTR lpOutString;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001377 UINT *lpOrder;
1378 INT *lpDx;
1379 INT *lpCaretPos;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001380 LPSTR lpClass;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001381 LPWSTR lpGlyphs;
1382 UINT nGlyphs;
1383 UINT nMaxFit;
Francois Gouget6c97e452000-11-10 22:33:45 +00001384} GCP_RESULTSA, *LPGCP_RESULTSA;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001385
Alexandre Julliarda3960291999-02-26 11:11:13 +00001386typedef struct tagGCP_RESULTSW
Veksler Michael1346a3c1998-12-15 11:15:35 +00001387{
1388 DWORD lStructSize;
1389 LPWSTR lpOutString;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001390 UINT *lpOrder;
1391 INT *lpDx;
1392 INT *lpCaretPos;
Huw D M Davies5b01b502002-04-03 22:08:27 +00001393 LPSTR lpClass;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001394 LPWSTR lpGlyphs;
1395 UINT nGlyphs;
1396 UINT nMaxFit;
Francois Gouget6c97e452000-11-10 22:33:45 +00001397} GCP_RESULTSW, *LPGCP_RESULTSW;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001398
1399DECL_WINELIB_TYPE_AW(GCP_RESULTS)
Francois Gouget6c97e452000-11-10 22:33:45 +00001400DECL_WINELIB_TYPE_AW(LPGCP_RESULTS)
Veksler Michael1346a3c1998-12-15 11:15:35 +00001401
1402 /* Rasterizer status */
1403typedef struct
1404{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001405 SHORT nSize;
1406 SHORT wFlags;
1407 SHORT nLanguageID;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001408} RASTERIZER_STATUS, *LPRASTERIZER_STATUS;
1409
1410#define TT_AVAILABLE 0x0001
1411#define TT_ENABLED 0x0002
1412
Jim Aston10141fe1999-04-25 12:31:20 +00001413#define TT_PRIM_LINE 1
1414#define TT_PRIM_QSPLINE 2
Huw D M Davies8da26fb2002-06-22 01:19:29 +00001415#define TT_PRIM_CSPLINE 3
Vincent BĂ©ron9a624912002-05-31 23:06:46 +00001416#define TT_POLYGON_TYPE 24
Jim Aston10141fe1999-04-25 12:31:20 +00001417
Andreas Mohr5d91a632004-08-16 20:07:06 +00001418 /* OpenGL defines */
1419typedef struct {
1420 FLOAT x;
1421 FLOAT y;
1422} POINTFLOAT, *PPOINTFLOAT;
1423
1424typedef struct {
1425 FLOAT gmfBlackBoxX;
1426 FLOAT gmfBlackBoxY;
1427 POINTFLOAT gmfptGlyphOrigin;
1428 FLOAT gmfCellIncX;
1429 FLOAT gmfCellIncY;
1430} GLYPHMETRICSFLOAT, *PGLYPHMETRICSFLOAT, *LPGLYPHMETRICSFLOAT;
1431
1432typedef struct {
1433 WORD nSize;
1434 WORD nVersion;
1435 DWORD dwFlags;
1436 BYTE iPixelType;
1437 BYTE cColorBits;
1438 BYTE cRedBits;
1439 BYTE cRedShift;
1440 BYTE cGreenBits;
1441 BYTE cGreenShift;
1442 BYTE cBlueBits;
1443 BYTE cBlueShift;
1444 BYTE cAlphaBits;
1445 BYTE cAlphaShift;
1446 BYTE cAccumBits;
1447 BYTE cAccumRedBits;
1448 BYTE cAccumGreenBits;
1449 BYTE cAccumBlueBits;
1450 BYTE cAccumAlphaBits;
1451 BYTE cDepthBits;
1452 BYTE cStencilBits;
1453 BYTE cAuxBuffers;
1454 BYTE iLayerPlane;
1455 BYTE bReserved;
1456 COLORREF crTransparent;
1457} LAYERPLANEDESCRIPTOR, *PLAYERPLANEDESCRIPTOR, *LPLAYERPLANEDESCRIPTOR;
1458
Veksler Michael1346a3c1998-12-15 11:15:35 +00001459/* Get/SetSystemPaletteUse() values */
Andrew John Hughes6f929652003-02-01 00:36:38 +00001460#define SYSPAL_ERROR 0
1461#define SYSPAL_STATIC 1
1462#define SYSPAL_NOSTATIC 2
1463#define SYSPAL_NOSTATIC256 3
1464
Ove Kaaven0e32a2b2002-12-02 18:58:46 +00001465#ifndef _PALETTEENTRY_DEFINED
1466#define _PALETTEENTRY_DEFINED
Veksler Michael1346a3c1998-12-15 11:15:35 +00001467typedef struct tagPALETTEENTRY
1468{
1469 BYTE peRed, peGreen, peBlue, peFlags;
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +00001470} PALETTEENTRY, *PPALETTEENTRY, *LPPALETTEENTRY;
Ove Kaaven0e32a2b2002-12-02 18:58:46 +00001471#endif
Veksler Michael1346a3c1998-12-15 11:15:35 +00001472
1473/* Logical palette entry flags */
1474#define PC_RESERVED 0x01
1475#define PC_EXPLICIT 0x02
1476#define PC_NOCOLLAPSE 0x04
1477
Ove Kaaven0e32a2b2002-12-02 18:58:46 +00001478#ifndef _LOGPALETTE_DEFINED
1479#define _LOGPALETTE_DEFINED
Michael Veksler4405f3c1999-08-18 18:35:57 +00001480typedef struct tagLOGPALETTE
Vincent BĂ©ron9a624912002-05-31 23:06:46 +00001481{
Veksler Michael1346a3c1998-12-15 11:15:35 +00001482 WORD palVersion;
1483 WORD palNumEntries;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001484 PALETTEENTRY palPalEntry[1];
Paul Quinnaaa83061999-06-05 15:23:20 +00001485} LOGPALETTE, *PLOGPALETTE, *LPLOGPALETTE, *NPLOGPALETTE;
Ove Kaaven0e32a2b2002-12-02 18:58:46 +00001486#endif
Veksler Michael1346a3c1998-12-15 11:15:35 +00001487
1488 /* Pens */
1489
1490typedef struct
1491{
Vincent BĂ©ron9a624912002-05-31 23:06:46 +00001492 UINT lopnStyle;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001493 POINT lopnWidth;
1494 COLORREF lopnColor;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001495} LOGPEN, *LPLOGPEN;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001496
Veksler Michael1346a3c1998-12-15 11:15:35 +00001497
Paul Quinn1beaae51998-12-15 15:38:36 +00001498typedef struct tagEXTLOGPEN
1499{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001500 DWORD elpPenStyle;
1501 DWORD elpWidth;
1502 UINT elpBrushStyle;
1503 COLORREF elpColor;
Dmitry Timoshkov4100c222005-09-12 15:28:31 +00001504 ULONG_PTR elpHatch;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001505 DWORD elpNumEntries;
1506 DWORD elpStyleEntry[1];
Paul Quinn1beaae51998-12-15 15:38:36 +00001507} EXTLOGPEN, *PEXTLOGPEN, *NPEXTLOGPEN, *LPEXTLOGPEN;
1508
Veksler Michael1346a3c1998-12-15 11:15:35 +00001509#define PS_SOLID 0x00000000
1510#define PS_DASH 0x00000001
1511#define PS_DOT 0x00000002
1512#define PS_DASHDOT 0x00000003
1513#define PS_DASHDOTDOT 0x00000004
1514#define PS_NULL 0x00000005
1515#define PS_INSIDEFRAME 0x00000006
1516#define PS_USERSTYLE 0x00000007
1517#define PS_ALTERNATE 0x00000008
1518#define PS_STYLE_MASK 0x0000000f
1519
1520#define PS_ENDCAP_ROUND 0x00000000
1521#define PS_ENDCAP_SQUARE 0x00000100
1522#define PS_ENDCAP_FLAT 0x00000200
1523#define PS_ENDCAP_MASK 0x00000f00
1524
1525#define PS_JOIN_ROUND 0x00000000
1526#define PS_JOIN_BEVEL 0x00001000
1527#define PS_JOIN_MITER 0x00002000
1528#define PS_JOIN_MASK 0x0000f000
1529
1530#define PS_COSMETIC 0x00000000
1531#define PS_GEOMETRIC 0x00010000
1532#define PS_TYPE_MASK 0x000f0000
1533
1534 /* Regions */
1535
1536#define ERROR 0
1537#define NULLREGION 1
1538#define SIMPLEREGION 2
1539#define COMPLEXREGION 3
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001540#define RGN_ERROR ERROR
Veksler Michael1346a3c1998-12-15 11:15:35 +00001541
1542#define RGN_AND 1
1543#define RGN_OR 2
1544#define RGN_XOR 3
1545#define RGN_DIFF 4
1546#define RGN_COPY 5
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001547#define RGN_MIN RGN_AND
1548#define RGN_MAX RGN_COPY
Huw Daviesfa28b5e2003-05-19 19:03:19 +00001549
1550#define SYSRGN 4
1551
Veksler Michael1346a3c1998-12-15 11:15:35 +00001552 /* Device contexts */
1553
Veksler Michael1346a3c1998-12-15 11:15:35 +00001554 /* Polygon modes */
1555#define ALTERNATE 1
1556#define WINDING 2
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001557#define POLYFILL_LAST 2
Veksler Michael1346a3c1998-12-15 11:15:35 +00001558
Francois Gouget6371e832000-10-13 23:12:19 +00001559/* Background modes */
1560/* Apparently some broken svr4 includes define TRANSPARENT */
Veksler Michael1346a3c1998-12-15 11:15:35 +00001561#undef TRANSPARENT
Veksler Michael1346a3c1998-12-15 11:15:35 +00001562#define TRANSPARENT 1
1563#define OPAQUE 2
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001564#define BKMODE_LAST 2
Veksler Michael1346a3c1998-12-15 11:15:35 +00001565
1566 /* Graphics Modes */
1567#define GM_COMPATIBLE 1
1568#define GM_ADVANCED 2
1569#define GM_LAST 2
1570
1571 /* Arc direction modes */
1572#define AD_COUNTERCLOCKWISE 1
1573#define AD_CLOCKWISE 2
1574
1575 /* Map modes */
1576#define MM_TEXT 1
1577#define MM_LOMETRIC 2
1578#define MM_HIMETRIC 3
1579#define MM_LOENGLISH 4
1580#define MM_HIENGLISH 5
1581#define MM_TWIPS 6
1582#define MM_ISOTROPIC 7
1583#define MM_ANISOTROPIC 8
1584
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001585#define MM_MIN MM_TEXT
1586#define MM_MAX MM_ANISOTROPIC
1587#define MM_MAX_FIXEDSCALE MM_TWIPS
1588
Veksler Michael1346a3c1998-12-15 11:15:35 +00001589 /* Coordinate modes */
1590#define ABSOLUTE 1
1591#define RELATIVE 2
1592
1593 /* Flood fill modes */
1594#define FLOODFILLBORDER 0
1595#define FLOODFILLSURFACE 1
1596
1597 /* Device parameters for GetDeviceCaps() */
1598#define DRIVERVERSION 0
1599#define TECHNOLOGY 2
1600#define HORZSIZE 4
1601#define VERTSIZE 6
1602#define HORZRES 8
1603#define VERTRES 10
1604#define BITSPIXEL 12
1605#define PLANES 14
1606#define NUMBRUSHES 16
1607#define NUMPENS 18
1608#define NUMMARKERS 20
1609#define NUMFONTS 22
1610#define NUMCOLORS 24
1611#define PDEVICESIZE 26
1612#define CURVECAPS 28
1613#define LINECAPS 30
1614#define POLYGONALCAPS 32
1615#define TEXTCAPS 34
1616#define CLIPCAPS 36
1617#define RASTERCAPS 38
1618#define ASPECTX 40
1619#define ASPECTY 42
1620#define ASPECTXY 44
1621#define LOGPIXELSX 88
1622#define LOGPIXELSY 90
Brian Teague161bc832000-11-29 20:02:46 +00001623#define CAPS1 94
Veksler Michael1346a3c1998-12-15 11:15:35 +00001624#define SIZEPALETTE 104
1625#define NUMRESERVED 106
1626#define COLORRES 108
1627
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001628#define PHYSICALWIDTH 110
1629#define PHYSICALHEIGHT 111
1630#define PHYSICALOFFSETX 112
1631#define PHYSICALOFFSETY 113
1632#define SCALINGFACTORX 114
1633#define SCALINGFACTORY 115
1634#define VREFRESH 116
1635#define DESKTOPVERTRES 117
1636#define DESKTOPHORZRES 118
1637#define BTLALIGNMENT 119
Raphael Junqueirab929f3d2005-11-10 11:05:30 +00001638#define SHADEBLENDCAPS 120
1639#define COLORMGMTCAPS 121
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001640
Veksler Michael1346a3c1998-12-15 11:15:35 +00001641/* TECHNOLOGY */
1642#define DT_PLOTTER 0
1643#define DT_RASDISPLAY 1
1644#define DT_RASPRINTER 2
1645#define DT_RASCAMERA 3
1646#define DT_CHARSTREAM 4
1647#define DT_METAFILE 5
1648#define DT_DISPFILE 6
1649
1650/* CURVECAPS */
1651#define CC_NONE 0x0000
1652#define CC_CIRCLES 0x0001
1653#define CC_PIE 0x0002
1654#define CC_CHORD 0x0004
1655#define CC_ELLIPSES 0x0008
1656#define CC_WIDE 0x0010
1657#define CC_STYLED 0x0020
1658#define CC_WIDESTYLED 0x0040
1659#define CC_INTERIORS 0x0080
1660#define CC_ROUNDRECT 0x0100
1661
1662/* LINECAPS */
1663#define LC_NONE 0x0000
1664#define LC_POLYLINE 0x0002
1665#define LC_MARKER 0x0004
1666#define LC_POLYMARKER 0x0008
1667#define LC_WIDE 0x0010
1668#define LC_STYLED 0x0020
1669#define LC_WIDESTYLED 0x0040
1670#define LC_INTERIORS 0x0080
1671
1672/* POLYGONALCAPS */
1673#define PC_NONE 0x0000
1674#define PC_POLYGON 0x0001
1675#define PC_RECTANGLE 0x0002
1676#define PC_WINDPOLYGON 0x0004
Francois Gouget6c97e452000-11-10 22:33:45 +00001677#define PC_TRAPEZOID 0x0004
Veksler Michael1346a3c1998-12-15 11:15:35 +00001678#define PC_SCANLINE 0x0008
1679#define PC_WIDE 0x0010
1680#define PC_STYLED 0x0020
1681#define PC_WIDESTYLED 0x0040
1682#define PC_INTERIORS 0x0080
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001683#define PC_POLYPOLYGON 0x0100
1684#define PC_PATHS 0x0200
Veksler Michael1346a3c1998-12-15 11:15:35 +00001685
1686/* TEXTCAPS */
1687#define TC_OP_CHARACTER 0x0001
1688#define TC_OP_STROKE 0x0002
1689#define TC_CP_STROKE 0x0004
1690#define TC_CR_90 0x0008
1691#define TC_CR_ANY 0x0010
1692#define TC_SF_X_YINDEP 0x0020
1693#define TC_SA_DOUBLE 0x0040
1694#define TC_SA_INTEGER 0x0080
1695#define TC_SA_CONTIN 0x0100
1696#define TC_EA_DOUBLE 0x0200
1697#define TC_IA_ABLE 0x0400
1698#define TC_UA_ABLE 0x0800
1699#define TC_SO_ABLE 0x1000
1700#define TC_RA_ABLE 0x2000
1701#define TC_VA_ABLE 0x4000
1702#define TC_RESERVED 0x8000
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001703#define TC_SCROLLBLT 0x00010000
Veksler Michael1346a3c1998-12-15 11:15:35 +00001704
1705/* CLIPCAPS */
1706#define CP_NONE 0x0000
1707#define CP_RECTANGLE 0x0001
1708#define CP_REGION 0x0002
1709
1710/* RASTERCAPS */
1711#define RC_NONE 0x0000
1712#define RC_BITBLT 0x0001
1713#define RC_BANDING 0x0002
1714#define RC_SCALING 0x0004
1715#define RC_BITMAP64 0x0008
1716#define RC_GDI20_OUTPUT 0x0010
1717#define RC_GDI20_STATE 0x0020
1718#define RC_SAVEBITMAP 0x0040
1719#define RC_DI_BITMAP 0x0080
1720#define RC_PALETTE 0x0100
1721#define RC_DIBTODEV 0x0200
1722#define RC_BIGFONT 0x0400
1723#define RC_STRETCHBLT 0x0800
1724#define RC_FLOODFILL 0x1000
1725#define RC_STRETCHDIB 0x2000
1726#define RC_OP_DX_OUTPUT 0x4000
1727#define RC_DEVBITS 0x8000
1728
Brian Teague161bc832000-11-29 20:02:46 +00001729/* CAPS1 */
Brian Teague161bc832000-11-29 20:02:46 +00001730#define C1_TRANSPARENT 0x0001
1731#define TC_TT_ABLE 0x0002
1732#define C1_TT_CR_ANY 0x0004
1733#define C1_EMF_COMPLIANT 0x0008
1734#define C1_DIBENGINE 0x0010
1735#define C1_GAMMA_RAMP 0x0040
1736#define C1_REINIT_ABLE 0x0080
1737#define C1_GLYPH_INDEX 0x0100
1738#define C1_BIT_PACKED 0x0200
1739#define C1_BYTE_PACKED 0x0400
1740#define C1_COLORCURSOR 0x0800
1741#define C1_CMYK_ABLE 0x1000
1742#define C1_SLOW_CARD 0x2000
1743
Raphael Junqueirab929f3d2005-11-10 11:05:30 +00001744/* SHADEBLENDCAPS */
1745#define SB_NONE 0x0000
1746#define SB_CONST_ALPHA 0x0001
1747#define SB_PIXEL_ALPHA 0x0002
1748#define SB_PREMULT_ALPHA 0x0004
1749#define SB_GRAD_RECT 0x0010
1750#define SB_GRAD_TRI 0x0020
1751
Veksler Michael1346a3c1998-12-15 11:15:35 +00001752 /* Device-independent bitmaps */
1753
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +00001754typedef struct {
1755 BYTE rgbBlue;
1756 BYTE rgbGreen;
1757 BYTE rgbRed;
1758 BYTE rgbReserved;
1759} RGBQUAD, *LPRGBQUAD;
1760
1761typedef struct {
1762 BYTE rgbtBlue;
1763 BYTE rgbtGreen;
1764 BYTE rgbtRed;
1765} RGBTRIPLE;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001766
Dimitrie O. Paun53f9c212003-08-28 21:43:34 +00001767#include <pshpack2.h>
Veksler Michael1346a3c1998-12-15 11:15:35 +00001768typedef struct
1769{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001770 WORD bfType;
1771 DWORD bfSize;
1772 WORD bfReserved1;
1773 WORD bfReserved2;
1774 DWORD bfOffBits;
Francois Gouget6c97e452000-11-10 22:33:45 +00001775} BITMAPFILEHEADER, *PBITMAPFILEHEADER, *LPBITMAPFILEHEADER;
Dimitrie O. Paun53f9c212003-08-28 21:43:34 +00001776#include <poppack.h>
Veksler Michael1346a3c1998-12-15 11:15:35 +00001777
Alexandre Julliard83f52d12000-09-26 22:20:14 +00001778#define MAKEPOINTS(l) (*((POINTS *)&(l)))
1779
Veksler Michael1346a3c1998-12-15 11:15:35 +00001780typedef struct
1781{
1782 DWORD biSize;
1783 LONG biWidth;
1784 LONG biHeight;
1785 WORD biPlanes;
1786 WORD biBitCount;
1787 DWORD biCompression;
1788 DWORD biSizeImage;
1789 LONG biXPelsPerMeter;
1790 LONG biYPelsPerMeter;
1791 DWORD biClrUsed;
1792 DWORD biClrImportant;
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +00001793} BITMAPINFOHEADER, *PBITMAPINFOHEADER, *LPBITMAPINFOHEADER;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001794
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001795typedef struct
1796{
1797 DWORD bV4Size;
1798 LONG bV4Width;
1799 LONG bV4Height;
1800 WORD bV4Planes;
1801 WORD bV4BitCount;
Patrik Stridvall1298eb42002-10-23 18:50:10 +00001802 DWORD bV4V4Compression;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001803 DWORD bV4SizeImage;
1804 LONG bV4XPelsPerMeter;
1805 LONG bV4YPelsPerMeter;
1806 DWORD bV4ClrUsed;
1807 DWORD bV4ClrImportant;
1808 DWORD bV4RedMask;
1809 DWORD bV4GreenMask;
1810 DWORD bV4BlueMask;
1811 DWORD bV4AlphaMask;
1812 DWORD bV4CSType;
Steven Edwardsca14f242002-09-04 18:47:32 +00001813 CIEXYZTRIPLE bV4Endpoints;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001814 DWORD bV4GammaRed;
1815 DWORD bV4GammaGreen;
1816 DWORD bV4GammaBlue;
1817} BITMAPV4HEADER, *PBITMAPV4HEADER;
1818
Francois Gougetf2e65752000-09-22 21:04:30 +00001819typedef struct {
1820 DWORD bV5Size;
1821 LONG bV5Width;
1822 LONG bV5Height;
1823 WORD bV5Planes;
1824 WORD bV5BitCount;
1825 DWORD bV5Compression;
1826 DWORD bV5SizeImage;
1827 LONG bV5XPelsPerMeter;
1828 LONG bV5YPelsPerMeter;
1829 DWORD bV5ClrUsed;
1830 DWORD bV5ClrImportant;
1831 DWORD bV5RedMask;
1832 DWORD bV5GreenMask;
1833 DWORD bV5BlueMask;
1834 DWORD bV5AlphaMask;
1835 DWORD bV5CSType;
1836 CIEXYZTRIPLE bV5Endpoints;
1837 DWORD bV5GammaRed;
1838 DWORD bV5GammaGreen;
1839 DWORD bV5GammaBlue;
1840 DWORD bV5Intent;
1841 DWORD bV5ProfileData;
1842 DWORD bV5ProfileSize;
1843 DWORD bV5Reserved;
1844} BITMAPV5HEADER, *LPBITMAPV5HEADER, *PBITMAPV5HEADER;
1845
1846#define PROFILE_LINKED 'LINK'
1847#define PROFILE_EMBEDDED 'MBED'
1848
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001849
Veksler Michael1346a3c1998-12-15 11:15:35 +00001850 /* biCompression */
1851#define BI_RGB 0
1852#define BI_RLE8 1
1853#define BI_RLE4 2
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001854#define BI_BITFIELDS 3
Veksler Michael1346a3c1998-12-15 11:15:35 +00001855
Dimitrie O. Paun64fd63f2004-04-09 19:02:07 +00001856typedef struct tagBITMAPINFO
1857{
1858 BITMAPINFOHEADER bmiHeader;
1859 RGBQUAD bmiColors[1];
Francois Gouget6c97e452000-11-10 22:33:45 +00001860} BITMAPINFO, *PBITMAPINFO, *LPBITMAPINFO;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001861
1862typedef struct
1863{
1864 DWORD bcSize;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001865 WORD bcWidth;
1866 WORD bcHeight;
1867 WORD bcPlanes;
1868 WORD bcBitCount;
Francois Gouget6c97e452000-11-10 22:33:45 +00001869} BITMAPCOREHEADER, *PBITMAPCOREHEADER, *LPBITMAPCOREHEADER;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001870
1871typedef struct
1872{
1873 BITMAPCOREHEADER bmciHeader;
1874 RGBTRIPLE bmciColors[1];
Francois Gougetf2e65752000-09-22 21:04:30 +00001875} BITMAPCOREINFO, *PBITMAPCOREINFO, *LPBITMAPCOREINFO;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001876
1877#define DIB_RGB_COLORS 0
1878#define DIB_PAL_COLORS 1
1879#define CBM_INIT 4
1880
Vincent BĂ©ron9a624912002-05-31 23:06:46 +00001881typedef struct
Veksler Michael1346a3c1998-12-15 11:15:35 +00001882{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001883 BITMAP dsBm;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001884 BITMAPINFOHEADER dsBmih;
1885 DWORD dsBitfields[3];
Alexandre Julliarda3960291999-02-26 11:11:13 +00001886 HANDLE dshSection;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001887 DWORD dsOffset;
Francois Gouget6c97e452000-11-10 22:33:45 +00001888} DIBSECTION, *PDIBSECTION, *LPDIBSECTION;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001889
1890 /* Stock GDI objects for GetStockObject() */
1891
1892#define WHITE_BRUSH 0
1893#define LTGRAY_BRUSH 1
1894#define GRAY_BRUSH 2
1895#define DKGRAY_BRUSH 3
1896#define BLACK_BRUSH 4
1897#define NULL_BRUSH 5
1898#define HOLLOW_BRUSH 5
1899#define WHITE_PEN 6
1900#define BLACK_PEN 7
1901#define NULL_PEN 8
1902#define OEM_FIXED_FONT 10
1903#define ANSI_FIXED_FONT 11
1904#define ANSI_VAR_FONT 12
1905#define SYSTEM_FONT 13
1906#define DEVICE_DEFAULT_FONT 14
1907#define DEFAULT_PALETTE 15
1908#define SYSTEM_FIXED_FONT 16
1909#define DEFAULT_GUI_FONT 17
Ulrich Czekalla16ff6682003-11-05 01:43:57 +00001910#define DC_BRUSH 18
1911#define DC_PEN 19
Veksler Michael1346a3c1998-12-15 11:15:35 +00001912
Ulrich Czekalla16ff6682003-11-05 01:43:57 +00001913#define STOCK_LAST 19
Alexandre Julliard8da12c41999-01-17 16:55:11 +00001914
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001915#define CLR_INVALID 0xffffffff
Veksler Michael1346a3c1998-12-15 11:15:35 +00001916/* Metafile header structure */
Dimitrie O. Paun53f9c212003-08-28 21:43:34 +00001917#include <pshpack2.h>
Veksler Michael1346a3c1998-12-15 11:15:35 +00001918typedef struct
1919{
1920 WORD mtType;
1921 WORD mtHeaderSize;
1922 WORD mtVersion;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001923 DWORD mtSize;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001924 WORD mtNoObjects;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001925 DWORD mtMaxRecord;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001926 WORD mtNoParameters;
Francois Gouget6c97e452000-11-10 22:33:45 +00001927} METAHEADER, *PMETAHEADER, *LPMETAHEADER;
Dimitrie O. Paun53f9c212003-08-28 21:43:34 +00001928#include <poppack.h>
Veksler Michael1346a3c1998-12-15 11:15:35 +00001929
1930/* Metafile typical record structure */
1931typedef struct
1932{
1933 DWORD rdSize;
1934 WORD rdFunction;
Alexandre Julliard8da12c41999-01-17 16:55:11 +00001935 WORD rdParm[1];
Francois Gouget6c97e452000-11-10 22:33:45 +00001936} METARECORD, *PMETARECORD, *LPMETARECORD;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001937
1938/* Handle table structure */
1939
1940typedef struct
1941{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001942 HGDIOBJ objectHandle[1];
Francois Gouget6c97e452000-11-10 22:33:45 +00001943} HANDLETABLE, *PHANDLETABLE, *LPHANDLETABLE;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001944
Veksler Michael1346a3c1998-12-15 11:15:35 +00001945
1946/* Clipboard metafile picture structure */
1947typedef struct
1948{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001949 LONG mm;
1950 LONG xExt;
1951 LONG yExt;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001952 HMETAFILE hMF;
1953} METAFILEPICT, *LPMETAFILEPICT;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001954
Veksler Michael1346a3c1998-12-15 11:15:35 +00001955
1956/* Metafile functions */
1957#define META_SETBKCOLOR 0x0201
1958#define META_SETBKMODE 0x0102
1959#define META_SETMAPMODE 0x0103
1960#define META_SETROP2 0x0104
1961#define META_SETRELABS 0x0105
1962#define META_SETPOLYFILLMODE 0x0106
1963#define META_SETSTRETCHBLTMODE 0x0107
1964#define META_SETTEXTCHAREXTRA 0x0108
1965#define META_SETTEXTCOLOR 0x0209
1966#define META_SETTEXTJUSTIFICATION 0x020A
1967#define META_SETWINDOWORG 0x020B
1968#define META_SETWINDOWEXT 0x020C
1969#define META_SETVIEWPORTORG 0x020D
1970#define META_SETVIEWPORTEXT 0x020E
1971#define META_OFFSETWINDOWORG 0x020F
1972#define META_SCALEWINDOWEXT 0x0410
1973#define META_OFFSETVIEWPORTORG 0x0211
1974#define META_SCALEVIEWPORTEXT 0x0412
1975#define META_LINETO 0x0213
1976#define META_MOVETO 0x0214
1977#define META_EXCLUDECLIPRECT 0x0415
1978#define META_INTERSECTCLIPRECT 0x0416
1979#define META_ARC 0x0817
1980#define META_ELLIPSE 0x0418
1981#define META_FLOODFILL 0x0419
1982#define META_PIE 0x081A
1983#define META_RECTANGLE 0x041B
1984#define META_ROUNDRECT 0x061C
1985#define META_PATBLT 0x061D
1986#define META_SAVEDC 0x001E
1987#define META_SETPIXEL 0x041F
1988#define META_OFFSETCLIPRGN 0x0220
1989#define META_TEXTOUT 0x0521
1990#define META_BITBLT 0x0922
1991#define META_STRETCHBLT 0x0B23
1992#define META_POLYGON 0x0324
1993#define META_POLYLINE 0x0325
1994#define META_ESCAPE 0x0626
1995#define META_RESTOREDC 0x0127
1996#define META_FILLREGION 0x0228
1997#define META_FRAMEREGION 0x0429
1998#define META_INVERTREGION 0x012A
1999#define META_PAINTREGION 0x012B
2000#define META_SELECTCLIPREGION 0x012C
2001#define META_SELECTOBJECT 0x012D
2002#define META_SETTEXTALIGN 0x012E
2003#define META_DRAWTEXT 0x062F
2004#define META_CHORD 0x0830
2005#define META_SETMAPPERFLAGS 0x0231
2006#define META_EXTTEXTOUT 0x0A32
2007#define META_SETDIBTODEV 0x0D33
2008#define META_SELECTPALETTE 0x0234
2009#define META_REALIZEPALETTE 0x0035
2010#define META_ANIMATEPALETTE 0x0436
2011#define META_SETPALENTRIES 0x0037
2012#define META_POLYPOLYGON 0x0538
2013#define META_RESIZEPALETTE 0x0139
2014#define META_DIBBITBLT 0x0940
2015#define META_DIBSTRETCHBLT 0x0B41
2016#define META_DIBCREATEPATTERNBRUSH 0x0142
2017#define META_STRETCHDIB 0x0F43
2018#define META_EXTFLOODFILL 0x0548
2019#define META_RESETDC 0x014C
2020#define META_STARTDOC 0x014D
2021#define META_STARTPAGE 0x004F
2022#define META_ENDPAGE 0x0050
2023#define META_ABORTDOC 0x0052
2024#define META_ENDDOC 0x005E
2025#define META_DELETEOBJECT 0x01F0
2026#define META_CREATEPALETTE 0x00F7
2027#define META_CREATEBRUSH 0x00F8
2028#define META_CREATEPATTERNBRUSH 0x01F9
2029#define META_CREATEPENINDIRECT 0x02FA
2030#define META_CREATEFONTINDIRECT 0x02FB
2031#define META_CREATEBRUSHINDIRECT 0x02FC
2032#define META_CREATEBITMAPINDIRECT 0x02FD
2033#define META_CREATEBITMAP 0x06FE
2034#define META_CREATEREGION 0x06FF
2035#define META_UNKNOWN 0x0529 /* FIXME: unknown meta magic */
2036
Patrik Stridvallf94462f2002-01-31 23:22:07 +00002037typedef INT (CALLBACK *MFENUMPROC)(HDC,HANDLETABLE*,METARECORD*,
Alexandre Julliarda3960291999-02-26 11:11:13 +00002038 INT,LPARAM);
Veksler Michael1346a3c1998-12-15 11:15:35 +00002039
2040/* enhanced metafile structures and functions */
2041
2042/* note that ENHMETAHEADER is just a particular kind of ENHMETARECORD,
2043 ie. the header is just the first record in the metafile */
2044typedef struct {
Vincent BĂ©ron9a624912002-05-31 23:06:46 +00002045 DWORD iType;
2046 DWORD nSize;
2047 RECTL rclBounds;
2048 RECTL rclFrame;
2049 DWORD dSignature;
2050 DWORD nVersion;
2051 DWORD nBytes;
2052 DWORD nRecords;
2053 WORD nHandles;
2054 WORD sReserved;
2055 DWORD nDescription;
2056 DWORD offDescription;
2057 DWORD nPalEntries;
2058 SIZEL szlDevice;
Huw D M Daviesad1e06e1999-04-24 11:47:26 +00002059 SIZEL szlMillimeters;
Veksler Michael1346a3c1998-12-15 11:15:35 +00002060 DWORD cbPixelFormat;
2061 DWORD offPixelFormat;
2062 DWORD bOpenGL;
Peter Hunnisettf2b84922000-01-15 22:17:49 +00002063 SIZEL szlMicrometers;
Vincent BĂ©ron9a624912002-05-31 23:06:46 +00002064} ENHMETAHEADER, *PENHMETAHEADER, *LPENHMETAHEADER;
Veksler Michael1346a3c1998-12-15 11:15:35 +00002065
2066typedef struct {
Vincent BĂ©ron9a624912002-05-31 23:06:46 +00002067 DWORD iType;
2068 DWORD nSize;
2069 DWORD dParm[1];
2070} ENHMETARECORD, *LPENHMETARECORD;
Veksler Michael1346a3c1998-12-15 11:15:35 +00002071
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002072typedef struct {
2073 DWORD iType;
2074 DWORD nSize;
2075} EMR, *PEMR;
2076
2077typedef struct {
2078 POINTL ptlReference;
2079 DWORD nChars;
2080 DWORD offString;
2081 DWORD fOptions;
2082 RECTL rcl;
2083 DWORD offDx;
2084} EMRTEXT, *PEMRTEXT;
2085
2086typedef struct {
2087 EMR emr;
2088} EMRABORTPATH, *PEMRABORTPATH,
2089 EMRBEGINPATH, *PEMRBEGINPATH,
2090 EMRENDPATH, *PEMRENDPATH,
2091 EMRCLOSEFIGURE, *PEMRCLOSEFIGURE,
2092 EMRFLATTENPATH, *PEMRFLATTENPATH,
2093 EMRWIDENPATH, *PEMRWIDENPATH,
2094 EMRSETMETARGN, *PEMRSETMETARGN,
2095 EMRSAVEDC, *PEMRSAVEDC,
2096 EMRREALIZEPALETTE, *PEMRREALIZEPALETTE;
2097
2098typedef struct {
2099 EMR emr;
2100 POINTL ptlCenter;
2101 DWORD nRadius;
2102 FLOAT eStartAngle;
2103 FLOAT eSweepAngle;
2104} EMRANGLEARC, *PEMRANGLEARC;
2105
2106typedef struct {
2107 EMR emr;
2108 RECTL rclBox;
2109 POINTL ptlStart;
2110 POINTL ptlEnd;
2111} EMRARC, *PEMRARC,
2112 EMRARCTO, *PEMRARCTO,
2113 EMRCHORD, *PEMRCHORD,
2114 EMRPIE, *PEMRPIE;
2115
2116typedef struct {
2117 EMR emr;
2118 RECTL rclBounds;
2119 LONG xDest;
2120 LONG yDest;
2121 LONG cxDest;
2122 LONG cyDest;
2123 DWORD dwRop;
2124 LONG xSrc;
2125 LONG ySrc;
2126 XFORM xformSrc;
2127 COLORREF crBkColorSrc;
Michael Cardenas6a52a502000-02-07 17:22:01 +00002128 DWORD iUsageSrc;
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002129 DWORD offBmiSrc;
2130 DWORD cbBmiSrc;
2131 DWORD offBitsSrc;
2132 DWORD cbBitsSrc;
2133} EMRBITBLT, *PEMRBITBLT;
2134
2135typedef struct {
Alexandre Julliardf4bf9de2005-09-12 11:19:56 +00002136 EMR emr;
2137 DWORD ihBrush;
2138 LOGBRUSH32 lb;
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002139} EMRCREATEBRUSHINDIRECT, *PEMRCREATEBRUSHINDIRECT;
2140
2141typedef struct {
2142 EMR emr;
2143 DWORD ihCS;
Peter Hunnisettf2b84922000-01-15 22:17:49 +00002144 LOGCOLORSPACEA lcs;
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002145} EMRCREATECOLORSPACE, *PEMRCREATECOLORSPACE;
2146
2147typedef struct {
Peter Hunnisettf2b84922000-01-15 22:17:49 +00002148 EMR emr;
2149 DWORD ihCS;
2150 LOGCOLORSPACEW lcs;
2151 DWORD dwFlags;
2152 DWORD cbData;
2153 BYTE Data[1];
2154} EMRCREATECOLORSPACEW, *PEMRCREATECOLORSPACEW;
2155
2156typedef struct {
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002157 EMR emr;
2158 DWORD ihBrush;
2159 DWORD iUsage;
2160 DWORD offBmi;
2161 DWORD cbBmi;
2162 DWORD offBits;
2163 DWORD cbBits;
2164} EMRCREATEDIBPATTERNBRUSHPT, *PEMRCREATEDIBPATTERNBRUSHPT;
2165
2166typedef struct {
2167 EMR emr;
2168 DWORD ihBrush;
2169 DWORD iUsage;
2170 DWORD offBmi;
2171 DWORD cbBmi;
2172 DWORD offBits;
2173 DWORD cbBits;
2174} EMRCREATEMONOBRUSH, *PEMRCREATEMONOBRUSH;
2175
2176typedef struct {
2177 EMR emr;
2178 DWORD ihPal;
2179 LOGPALETTE lgpl;
2180} EMRCREATEPALETTE, *PEMRCREATEPALETTE;
2181
2182typedef struct {
2183 EMR emr;
2184 DWORD ihPen;
2185 LOGPEN lopn;
2186} EMRCREATEPEN, *PEMRCREATEPEN;
2187
2188typedef struct {
2189 EMR emr;
2190 DWORD ihCS;
2191} EMRDELETECOLORSPACE, *PEMRDELETECOLORSPACE,
2192 EMRSELECTCOLORSPACE, *PEMRSELECTCOLORSPACE,
2193 EMRSETCOLORSPACE, *PEMRSETCOLORSPACE;
2194
2195typedef struct {
2196 EMR emr;
2197 DWORD ihObject;
2198} EMRDELETEOBJECT, *PEMRDELETEOBJECT,
2199 EMRSELECTOBJECT, *PEMRSELECTOBJECT;
2200
2201typedef struct {
2202 EMR emr;
2203 RECTL rclBox;
2204} EMRELLIPSE, *PEMRELLIPSE,
2205 EMRRECTANGLE, *PEMRRECTANGLE;
2206
2207typedef struct {
2208 EMR emr;
2209 DWORD nPalEntries;
2210 DWORD offPalEntries;
2211 DWORD nSizeLast;
2212} EMREOF, *PEMREOF;
2213
2214typedef struct {
2215 EMR emr;
2216 RECTL rclClip;
2217} EMREXCLUDECLIPRECT, *PEMREXCLUDECLIPRECT,
2218 EMRINTERSECTCLIPRECT, *PEMRINTERSECTCLIPRECT;
2219
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002220typedef struct {
2221 EMR emr;
2222 DWORD ihFont;
2223 EXTLOGFONTW elfw;
2224} EMREXTCREATEFONTINDIRECTW, *PEMREXTCREATEFONTINDIRECTW;
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002225
2226typedef struct {
2227 EMR emr;
2228 DWORD ihPen;
2229 DWORD offBmi;
2230 DWORD cbBmi;
2231 DWORD offBits;
2232 DWORD cbBits;
2233 EXTLOGPEN elp;
2234} EMREXTCREATEPEN, *PEMREXTCREATEPEN;
2235
2236typedef struct {
2237 EMR emr;
2238 POINTL ptlStart;
2239 COLORREF crColor;
2240 DWORD iMode;
2241} EMREXTFLOODFILL, *PEMREXTFLOODFILL;
2242
2243typedef struct {
2244 EMR emr;
2245 DWORD cbRgnData;
2246 DWORD iMode;
2247 BYTE RgnData[1];
2248} EMREXTSELECTCLIPRGN, *PEMREXTSELECTCLIPRGN;
2249
2250typedef struct {
2251 EMR emr;
2252 RECTL rclBounds;
2253 DWORD iGraphicsMode;
2254 FLOAT exScale;
2255 FLOAT eyScale;
2256 EMRTEXT emrtext;
2257} EMREXTTEXTOUTA, *PEMREXTTEXTOUTA,
2258 EMREXTTEXTOUTW, *PEMREXTTEXTOUTW;
2259
2260typedef struct {
2261 EMR emr;
2262 RECTL rclBounds;
2263} EMRFILLPATH, *PEMRFILLPATH,
2264 EMRSTROKEANDFILLPATH, *PEMRSTROKEANDFILLPATH,
2265 EMRSTROKEPATH, *PEMRSTROKEPATH;
2266
2267typedef struct {
2268 EMR emr;
2269 RECTL rclBounds;
2270 DWORD cbRgnData;
2271 DWORD ihBrush;
2272 BYTE RgnData[1];
2273} EMRFILLRGN, *PEMRFILLRGN;
2274
2275typedef struct {
Patrik Stridvall1298eb42002-10-23 18:50:10 +00002276 DWORD dSignature;
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002277 DWORD nVersion;
2278 DWORD cbData;
2279 DWORD offData;
2280} EMRFORMAT, *PEMRFORMAT;
2281
2282typedef struct {
2283 EMR emr;
2284 RECTL rclBounds;
2285 DWORD cbRgnData;
2286 DWORD ihBrush;
2287 SIZEL szlStroke;
2288 BYTE RgnData[1];
2289} EMRFRAMERGN, *PEMRFRAMERGN;
2290
2291typedef struct {
2292 EMR emr;
2293 DWORD cbData;
2294 BYTE Data[1];
Francois Gouget6c97e452000-11-10 22:33:45 +00002295} EMRGDICOMMENT, *PEMRGDICOMMENT;
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002296
2297#if 0
2298typedef struct {
2299 EMR emr;
2300 RECTL rclBounds;
2301 DWORD nVer;
2302 DWORD nTri;
2303 ULONG ulMode;
2304 TRIVERTEX Ver[1];
2305} EMRGRADIENTFILL, *PEMRGRADIENTFILL;
2306#endif
2307
2308typedef struct {
2309 EMR emr;
2310 RECTL rclBounds;
2311 DWORD cbRgnData;
2312 BYTE RgnData[1];
2313} EMRINVERTRGN, *PEMRINVERTRGN,
2314 EMRPAINTRGN, *PEMRPAINTRGN;
2315
2316typedef struct {
2317 EMR emr;
2318 POINTL ptl;
2319} EMRLINETO, *PEMRLINETO,
2320 EMRMOVETOEX, *PEMRMOVETOEX;
2321
2322typedef struct {
2323 EMR emr;
2324 RECTL rclBounds;
2325 LONG xDest;
2326 LONG yDest;
2327 LONG cxDest;
2328 LONG cyDest;
2329 DWORD dwRop;
2330 LONG xSrc;
2331 LONG ySrc;
2332 XFORM xformSrc;
2333 COLORREF crBkColorSrc;
2334 DWORD iUsageSrc;
2335 DWORD offBmiSrc;
2336 DWORD cbBmiSrc;
2337 DWORD offBitsSrc;
2338 DWORD cbBitsSrc;
2339 LONG xMask;
2340 LONG yMask;
2341 DWORD iUsageMask;
2342 DWORD offBmiMask;
2343 DWORD cbBmiMask;
2344 DWORD offBitsMask;
2345 DWORD cbBitsMask;
2346} EMRMASKBLT, *PEMRMASKBLT;
2347
2348typedef struct {
2349 EMR emr;
2350 XFORM xform;
2351 DWORD iMode;
2352} EMRMODIFYWORLDTRANSFORM, *PEMRMODIFYWORLDTRANSFORM;
2353
2354typedef struct {
2355 EMR emr;
2356 POINTL ptlOffset;
2357} EMROFFSETCLIPRGN, *PEMROFFSETCLIPRGN;
2358
2359typedef struct {
2360 EMR emr;
2361 RECTL rclBounds;
Patrik Stridvall1298eb42002-10-23 18:50:10 +00002362 POINTL aptlDest[3];
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002363 LONG xSrc;
2364 LONG ySrc;
2365 LONG cxSrc;
2366 LONG cySrc;
2367 XFORM xformSrc;
2368 COLORREF crBkColorSrc;
2369 DWORD iUsageSrc;
2370 DWORD offBmiSrc;
2371 DWORD cbBmiSrc;
2372 DWORD offBitsSrc;
2373 DWORD cbBitsSrc;
2374 LONG xMask;
2375 LONG yMask;
2376 DWORD iUsageMask;
2377 DWORD offBmiMask;
2378 DWORD cbBmiMask;
Vincent BĂ©ron9a624912002-05-31 23:06:46 +00002379 DWORD offBitsMask;
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002380 DWORD cbBitsMask;
2381} EMRPLGBLT, *PEMRPLGBLT;
2382
2383typedef struct {
2384 EMR emr;
2385 RECTL rclBounds;
2386 DWORD cptl;
2387 POINTL aptl[1];
2388} EMRPOLYLINE, *PEMRPOLYLINE,
2389 EMRPOLYBEZIER, *PEMRPOLYBEZIER,
2390 EMRPOLYGON, *PEMRPOLYGON,
2391 EMRPOLYBEZIERTO, *PEMRPOLYBEZIERTO,
2392 EMRPOLYLINETO, *PEMRPOLYLINETO;
2393
2394typedef struct {
2395 EMR emr;
2396 RECTL rclBounds;
Mike McCormack23d03672004-03-29 23:04:11 +00002397 DWORD cpts;
2398 POINTS apts[1];
2399} EMRPOLYLINE16, *PEMRPOLYLINE16,
2400 EMRPOLYBEZIER16, *PEMRPOLYBEZIER16,
2401 EMRPOLYGON16, *PEMRPOLYGON16,
2402 EMRPOLYBEZIERTO16, *PEMRPOLYBEZIERTO16,
2403 EMRPOLYLINETO16, *PEMRPOLYLINETO16;
2404
2405typedef struct {
2406 EMR emr;
2407 RECTL rclBounds;
2408 DWORD cpts;
2409 POINTS apts[1];
2410 BYTE abTypes[1];
2411} EMRPOLYDRAW16, *PEMRPOLYDRAW16;
2412
2413typedef struct {
2414 EMR emr;
2415 RECTL rclBounds;
2416 DWORD nPolys;
2417 DWORD cpts;
2418 DWORD aPolyCounts[1];
2419 POINTS apts[1];
2420} EMRPOLYPOLYLINE16, *PEMRPOLYPOLYLINE16,
2421 EMRPOLYPOLYGON16, *PEMRPOLYPOLYGON16;
2422
2423typedef struct {
2424 EMR emr;
2425 RECTL rclBounds;
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002426 DWORD cptl;
2427 POINTL aptl[1];
2428 BYTE abTypes[1];
Vincent BĂ©ron9a624912002-05-31 23:06:46 +00002429} EMRPOLYDRAW, *PEMRPOLYDRAW;
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002430
2431typedef struct {
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002432 EMR emr;
2433 RECTL rclBounds;
2434 DWORD nPolys;
2435 DWORD cptl;
2436 DWORD aPolyCounts[1];
2437 POINTL aptl[1];
2438} EMRPOLYPOLYLINE, *PEMRPOLYPOLYLINE,
2439 EMRPOLYPOLYGON, *PEMRPOLYPOLYGON;
2440
2441typedef struct {
2442 EMR emr;
2443 RECTL rclBounds;
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002444 DWORD iGraphicsMode;
2445 FLOAT exScale;
2446 FLOAT eyScale;
2447 LONG cStrings;
2448 EMRTEXT aemrtext[1];
2449} EMRPOLYTEXTOUTA, *PEMRPOLYTEXTOUTA,
2450 EMRPOLYTEXTOUTW, *PEMRPOLYTEXTOUTW;
2451
2452typedef struct {
2453 EMR emr;
2454 DWORD ihPal;
2455 DWORD cEntries;
2456} EMRRESIZEPALETTE, *PEMRRESIZEPALETTE;
2457
2458typedef struct {
2459 EMR emr;
2460 LONG iRelative;
2461} EMRRESTOREDC, *PEMRRESTOREDC;
2462
2463typedef struct {
2464 EMR emr;
2465 RECTL rclBox;
2466 SIZEL szlCorner;
2467} EMRROUNDRECT, *PEMRROUNDRECT;
2468
2469typedef struct {
2470 EMR emr;
2471 LONG xNum;
2472 LONG xDenom;
2473 LONG yNum;
2474 LONG yDenom;
2475} EMRSCALEVIEWPORTEXTEX, *PEMRSCALEVIEWPORTEXTEX,
2476 EMRSCALEWINDOWEXTEX, *PEMRSCALEWINDOWEXTEX;
2477
2478typedef struct {
2479 EMR emr;
Huw D M Davies585c8461999-05-02 09:23:51 +00002480 DWORD iMode;
2481} EMRSELECTCLIPPATH, *PEMRSELECTCLIPPATH,
2482 EMRSETBKMODE, *PEMRSETBKMODE,
2483 EMRSETMAPMODE, *PEMRSETMAPMODE,
2484 EMRSETPOLYFILLMODE, *PEMRSETPOLYFILLMODE,
2485 EMRSETROP2, *PEMRSETROP2,
2486 EMRSETSTRETCHBLTMODE, *PEMRSETSTRETCHBLTMODE,
2487 EMRSETTEXTALIGN, *PEMRSETTEXTALIGN,
Patrik Stridvallba9dc782002-11-04 22:43:24 +00002488 EMRSETICMMODE, *PEMRSETICMMODE,
Huw D M Davies585c8461999-05-02 09:23:51 +00002489 EMRSETLAYOUT, *PEMRSETLAYOUT;
2490
2491typedef struct {
2492 EMR emr;
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002493 DWORD ihPal;
2494} EMRSELECTPALETTE, *PEMRSELECTPALETTE;
2495
2496typedef struct {
2497 EMR emr;
2498 DWORD iArcDirection;
2499} EMRSETARCDIRECTION, *PEMRSETARCDIRECTION;
2500
2501typedef struct {
2502 EMR emr;
2503 COLORREF crColor;
2504} EMRSETBKCOLOR, *PEMRSETBKCOLOR,
2505 EMRSETTEXTCOLOR, *PEMRSETTEXTCOLOR;
2506
2507typedef struct {
2508 EMR emr;
2509 POINTL ptlOrigin;
2510} EMRSETBRUSHORGEX, *PEMRSETBRUSHORGEX,
2511 EMRSETVIEWPORTORGEX, *PEMRSETVIEWPORTORGEX,
2512 EMRSETWINDOWORGEX, *PEMRSETWINDOWORGEX;
2513
2514typedef struct {
2515 EMR emr;
2516 COLORADJUSTMENT ColorAdjustment;
2517} EMRSETCOLORADJUSTMENT, *PEMRSETCOLORADJUSTMENT;
2518
2519typedef struct {
2520 EMR emr;
2521 RECTL rclBounds;
2522 LONG xDest;
2523 LONG yDest;
2524 LONG xSrc;
2525 LONG ySrc;
2526 LONG cxSrc;
2527 LONG cySrc;
2528 DWORD offBmiSrc;
2529 DWORD cbBmiSrc;
2530 DWORD offBitsSrc;
2531 DWORD cbBitsSrc;
2532 DWORD iUsageSrc;
2533 DWORD iStartScan;
2534 DWORD cScans;
Patrik Stridvall1e22e3b2002-10-29 21:23:33 +00002535} EMRSETDIBITSTODEVICE, *PEMRSETDIBITSTODEVICE;
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002536
2537typedef struct {
2538 EMR emr;
2539 DWORD dwFlags;
2540} EMRSETMAPPERFLAGS, *PEMRSETMAPPERFLAGS;
2541
2542typedef struct {
2543 EMR emr;
2544 FLOAT eMiterLimit;
2545} EMRSETMITERLIMIT, *PEMRSETMITERLIMIT;
2546
2547typedef struct {
2548 EMR emr;
2549 DWORD ihPal;
2550 DWORD iStart;
2551 DWORD cEntries;
2552 PALETTEENTRY aPalEntries[1];
2553} EMRSETPALETTEENTRIES, *PEMRSETPALETTEENTRIES;
2554
2555typedef struct {
2556 EMR emr;
2557 POINTL ptlPixel;
2558 COLORREF crColor;
2559} EMRSETPIXELV, *PEMRSETPIXELV;
2560
2561typedef struct {
2562 EMR emr;
2563 SIZEL szlExtent;
2564} EMRSETVIEWPORTEXTEX, *PEMRSETVIEWPORTEXTEX,
2565 EMRSETWINDOWEXTEX, *PEMRSETWINDOWEXTEX;
2566
2567typedef struct {
2568 EMR emr;
2569 XFORM xform;
2570} EMRSETWORLDTRANSFORM, *PEMRSETWORLDTRANSFORM;
2571
2572typedef struct {
2573 EMR emr;
2574 RECTL rclBounds;
2575 LONG xDest;
2576 LONG yDest;
2577 LONG cxDest;
2578 LONG cyDest;
2579 DWORD dwRop;
2580 LONG xSrc;
2581 LONG ySrc;
2582 XFORM xformSrc;
2583 COLORREF crBkColorSrc;
2584 DWORD iUsageSrc;
2585 DWORD offBmiSrc;
2586 DWORD cbBmiSrc;
2587 DWORD offBitsSrc;
2588 DWORD cbBitsSrc;
2589 LONG cxSrc;
2590 LONG cySrc;
2591} EMRSTRETCHBLT, *PEMRSTRETCHBLT;
2592
2593typedef struct {
Huw Davies063824d2005-10-31 21:04:18 +00002594 EMR emr;
2595 RECTL rclBounds;
2596 LONG xDest;
2597 LONG yDest;
2598 LONG cxDest;
2599 LONG cyDest;
2600 DWORD dwRop;
2601 LONG xSrc;
2602 LONG ySrc;
2603 XFORM xformSrc;
2604 COLORREF crBkColorSrc;
2605 DWORD iUsageSrc;
2606 DWORD offBmiSrc;
2607 DWORD cbBmiSrc;
2608 DWORD offBitsSrc;
2609 DWORD cbBitsSrc;
2610 LONG cxSrc;
2611 LONG cySrc;
2612} EMRALPHABLEND, *PEMRALPHABLEND;
2613
2614typedef struct {
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002615 EMR emr;
2616 RECTL rclBounds;
2617 LONG xDest;
2618 LONG yDest;
2619 LONG xSrc;
2620 LONG ySrc;
2621 LONG cxSrc;
2622 LONG cySrc;
2623 DWORD offBmiSrc;
2624 DWORD cbBmiSrc;
2625 DWORD offBitsSrc;
2626 DWORD cbBitsSrc;
Michael Cardenas6a52a502000-02-07 17:22:01 +00002627 DWORD iUsageSrc;
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002628 DWORD dwRop;
2629 LONG cxDest;
Michael Cardenas6a52a502000-02-07 17:22:01 +00002630 LONG cyDest;
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002631} EMRSTRETCHDIBITS, *PEMRSTRETCHDIBITS;
2632
Peter Hunnisettf2b84922000-01-15 22:17:49 +00002633typedef struct {
Vincent BĂ©ron9a624912002-05-31 23:06:46 +00002634 EMR emr;
2635 PIXELFORMATDESCRIPTOR pfd;
Peter Hunnisettf2b84922000-01-15 22:17:49 +00002636} EMRPIXELFORMAT, *PEMRPIXELFORMAT;
2637
2638typedef struct tagEMRGLSRECORD {
2639 EMR emr;
2640 DWORD cbData;
2641 BYTE Data[1];
2642} EMRGLSRECORD, *PEMRGLSRECORD;
2643
2644typedef struct {
2645 EMR emr;
2646 RECTL rclBounds;
2647 DWORD cbData;
2648 BYTE Data[1];
Vincent BĂ©ron9a624912002-05-31 23:06:46 +00002649} EMRGLSBOUNDEDRECORD, *PEMRGLSBOUNDEDRECORD;
Peter Hunnisettf2b84922000-01-15 22:17:49 +00002650
Alexandre Julliard80774de2003-02-14 23:30:27 +00002651typedef INT (CALLBACK *ENHMFENUMPROC)(HDC, HANDLETABLE *,
2652 const ENHMETARECORD *, INT, LPARAM);
Veksler Michael1346a3c1998-12-15 11:15:35 +00002653
2654#define EMR_HEADER 1
2655#define EMR_POLYBEZIER 2
2656#define EMR_POLYGON 3
2657#define EMR_POLYLINE 4
2658#define EMR_POLYBEZIERTO 5
2659#define EMR_POLYLINETO 6
2660#define EMR_POLYPOLYLINE 7
2661#define EMR_POLYPOLYGON 8
2662#define EMR_SETWINDOWEXTEX 9
2663#define EMR_SETWINDOWORGEX 10
2664#define EMR_SETVIEWPORTEXTEX 11
2665#define EMR_SETVIEWPORTORGEX 12
2666#define EMR_SETBRUSHORGEX 13
2667#define EMR_EOF 14
2668#define EMR_SETPIXELV 15
2669#define EMR_SETMAPPERFLAGS 16
2670#define EMR_SETMAPMODE 17
2671#define EMR_SETBKMODE 18
2672#define EMR_SETPOLYFILLMODE 19
2673#define EMR_SETROP2 20
2674#define EMR_SETSTRETCHBLTMODE 21
2675#define EMR_SETTEXTALIGN 22
2676#define EMR_SETCOLORADJUSTMENT 23
2677#define EMR_SETTEXTCOLOR 24
2678#define EMR_SETBKCOLOR 25
2679#define EMR_OFFSETCLIPRGN 26
2680#define EMR_MOVETOEX 27
2681#define EMR_SETMETARGN 28
2682#define EMR_EXCLUDECLIPRECT 29
2683#define EMR_INTERSECTCLIPRECT 30
2684#define EMR_SCALEVIEWPORTEXTEX 31
2685#define EMR_SCALEWINDOWEXTEX 32
2686#define EMR_SAVEDC 33
2687#define EMR_RESTOREDC 34
2688#define EMR_SETWORLDTRANSFORM 35
2689#define EMR_MODIFYWORLDTRANSFORM 36
2690#define EMR_SELECTOBJECT 37
2691#define EMR_CREATEPEN 38
2692#define EMR_CREATEBRUSHINDIRECT 39
2693#define EMR_DELETEOBJECT 40
2694#define EMR_ANGLEARC 41
2695#define EMR_ELLIPSE 42
2696#define EMR_RECTANGLE 43
2697#define EMR_ROUNDRECT 44
2698#define EMR_ARC 45
2699#define EMR_CHORD 46
2700#define EMR_PIE 47
2701#define EMR_SELECTPALETTE 48
2702#define EMR_CREATEPALETTE 49
2703#define EMR_SETPALETTEENTRIES 50
2704#define EMR_RESIZEPALETTE 51
2705#define EMR_REALIZEPALETTE 52
2706#define EMR_EXTFLOODFILL 53
2707#define EMR_LINETO 54
2708#define EMR_ARCTO 55
2709#define EMR_POLYDRAW 56
2710#define EMR_SETARCDIRECTION 57
2711#define EMR_SETMITERLIMIT 58
2712#define EMR_BEGINPATH 59
2713#define EMR_ENDPATH 60
2714#define EMR_CLOSEFIGURE 61
2715#define EMR_FILLPATH 62
2716#define EMR_STROKEANDFILLPATH 63
2717#define EMR_STROKEPATH 64
2718#define EMR_FLATTENPATH 65
2719#define EMR_WIDENPATH 66
2720#define EMR_SELECTCLIPPATH 67
2721#define EMR_ABORTPATH 68
2722#define EMR_GDICOMMENT 70
2723#define EMR_FILLRGN 71
2724#define EMR_FRAMERGN 72
2725#define EMR_INVERTRGN 73
2726#define EMR_PAINTRGN 74
2727#define EMR_EXTSELECTCLIPRGN 75
2728#define EMR_BITBLT 76
2729#define EMR_STRETCHBLT 77
2730#define EMR_MASKBLT 78
2731#define EMR_PLGBLT 79
2732#define EMR_SETDIBITSTODEVICE 80
2733#define EMR_STRETCHDIBITS 81
2734#define EMR_EXTCREATEFONTINDIRECTW 82
2735#define EMR_EXTTEXTOUTA 83
2736#define EMR_EXTTEXTOUTW 84
2737#define EMR_POLYBEZIER16 85
2738#define EMR_POLYGON16 86
2739#define EMR_POLYLINE16 87
2740#define EMR_POLYBEZIERTO16 88
2741#define EMR_POLYLINETO16 89
2742#define EMR_POLYPOLYLINE16 90
2743#define EMR_POLYPOLYGON16 91
2744#define EMR_POLYDRAW16 92
2745#define EMR_CREATEMONOBRUSH 93
2746#define EMR_CREATEDIBPATTERNBRUSHPT 94
2747#define EMR_EXTCREATEPEN 95
2748#define EMR_POLYTEXTOUTA 96
2749#define EMR_POLYTEXTOUTW 97
2750#define EMR_SETICMMODE 98
2751#define EMR_CREATECOLORSPACE 99
2752#define EMR_SETCOLORSPACE 100
2753#define EMR_DELETECOLORSPACE 101
2754#define EMR_GLSRECORD 102
2755#define EMR_GLSBOUNDEDRECORD 103
2756#define EMR_PIXELFORMAT 104
Ulrich Czekalla550b97e2002-06-24 23:09:19 +00002757#define EMR_DRAWESCAPE 105
2758#define EMR_EXTESCAPE 106
2759#define EMR_STARTDOC 107
2760#define EMR_SMALLTEXTOUT 108
2761#define EMR_FORCEUFIMAPPING 109
2762#define EMR_NAMEDESCAPE 110
2763#define EMR_COLORCORRECTPALETTE 111
2764#define EMR_SETICMPROFILEA 112
2765#define EMR_SETICMPROFILEW 113
2766#define EMR_ALPHABLEND 114
2767#define EMR_SETLAYOUT 115
2768#define EMR_TRANSPARENTBLT 116
2769#define EMR_RESERVED_117 117
2770#define EMR_GRADIENTFILL 118
2771#define EMR_SETLINKEDUFI 119
2772#define EMR_SETTEXTJUSTIFICATION 120
2773#define EMR_COLORMATCHTOTARGETW 121
2774#define EMR_CREATECOLORSPACEW 122
Veksler Michael1346a3c1998-12-15 11:15:35 +00002775
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002776#define EMR_MIN 1
Ulrich Czekalla550b97e2002-06-24 23:09:19 +00002777#define EMR_MAX 122
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002778
Veksler Michael1346a3c1998-12-15 11:15:35 +00002779#define ENHMETA_SIGNATURE 1179469088
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002780#define ENHMETA_STOCK_OBJECT 0x80000000
2781
Alexandre Julliard80774de2003-02-14 23:30:27 +00002782#define GDICOMMENT_IDENTIFIER 0x43494447
2783#define GDICOMMENT_WINDOWS_METAFILE 0x80000001
2784#define GDICOMMENT_BEGINGROUP 0x00000002
2785#define GDICOMMENT_ENDGROUP 0x00000003
2786#define GDICOMMENT_MULTIFORMATS 0x40000004
2787#define GDICOMMENT_UNICODE_STRING 0x00000040
2788#define GDICOMMENT_UNICODE_END 0x00000080
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002789#define EPS_SIGNATURE 0x46535045
Veksler Michael1346a3c1998-12-15 11:15:35 +00002790
2791#define CCHDEVICENAME 32
2792#define CCHFORMNAME 32
2793
2794typedef struct
2795{
2796 BYTE dmDeviceName[CCHDEVICENAME];
2797 WORD dmSpecVersion;
2798 WORD dmDriverVersion;
2799 WORD dmSize;
2800 WORD dmDriverExtra;
2801 DWORD dmFields;
Huw D M Daviese39b6761999-05-17 16:20:51 +00002802 union {
2803 struct {
Dimitrie O. Paund985e662002-12-23 01:33:00 +00002804 short dmOrientation;
2805 short dmPaperSize;
2806 short dmPaperLength;
2807 short dmPaperWidth;
Francois Gouget6c97e452000-11-10 22:33:45 +00002808 } DUMMYSTRUCTNAME1;
Huw D M Daviese39b6761999-05-17 16:20:51 +00002809 POINTL dmPosition;
Francois Gouget6c97e452000-11-10 22:33:45 +00002810 } DUMMYUNIONNAME1;
Dimitrie O. Paund985e662002-12-23 01:33:00 +00002811 short dmScale;
2812 short dmCopies;
2813 short dmDefaultSource;
2814 short dmPrintQuality;
2815 short dmColor;
2816 short dmDuplex;
2817 short dmYResolution;
2818 short dmTTOption;
2819 short dmCollate;
Veksler Michael1346a3c1998-12-15 11:15:35 +00002820 BYTE dmFormName[CCHFORMNAME];
2821 WORD dmLogPixels;
2822 DWORD dmBitsPerPel;
2823 DWORD dmPelsWidth;
2824 DWORD dmPelsHeight;
2825 DWORD dmDisplayFlags;
2826 DWORD dmDisplayFrequency;
2827 DWORD dmICMMethod;
2828 DWORD dmICMIntent;
2829 DWORD dmMediaType;
2830 DWORD dmDitherType;
2831 DWORD dmReserved1;
2832 DWORD dmReserved2;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002833 DWORD dmPanningWidth;
2834 DWORD dmPanningHeight;
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +00002835} DEVMODEA, *PDEVMODEA, *LPDEVMODEA;
Veksler Michael1346a3c1998-12-15 11:15:35 +00002836
2837typedef struct
2838{
2839 WCHAR dmDeviceName[CCHDEVICENAME];
2840 WORD dmSpecVersion;
2841 WORD dmDriverVersion;
2842 WORD dmSize;
2843 WORD dmDriverExtra;
2844 DWORD dmFields;
Huw D M Daviese39b6761999-05-17 16:20:51 +00002845 union {
2846 struct {
Dimitrie O. Paund985e662002-12-23 01:33:00 +00002847 short dmOrientation;
2848 short dmPaperSize;
2849 short dmPaperLength;
2850 short dmPaperWidth;
Francois Gouget6c97e452000-11-10 22:33:45 +00002851 } DUMMYSTRUCTNAME1;
Huw D M Daviese39b6761999-05-17 16:20:51 +00002852 POINTL dmPosition;
Francois Gouget6c97e452000-11-10 22:33:45 +00002853 } DUMMYUNIONNAME1;
Dimitrie O. Paund985e662002-12-23 01:33:00 +00002854 short dmScale;
2855 short dmCopies;
2856 short dmDefaultSource;
2857 short dmPrintQuality;
2858 short dmColor;
2859 short dmDuplex;
2860 short dmYResolution;
2861 short dmTTOption;
2862 short dmCollate;
Veksler Michael1346a3c1998-12-15 11:15:35 +00002863 WCHAR dmFormName[CCHFORMNAME];
2864 WORD dmLogPixels;
2865 DWORD dmBitsPerPel;
2866 DWORD dmPelsWidth;
2867 DWORD dmPelsHeight;
2868 DWORD dmDisplayFlags;
2869 DWORD dmDisplayFrequency;
2870 DWORD dmICMMethod;
2871 DWORD dmICMIntent;
2872 DWORD dmMediaType;
2873 DWORD dmDitherType;
2874 DWORD dmReserved1;
2875 DWORD dmReserved2;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002876 DWORD dmPanningWidth;
2877 DWORD dmPanningHeight;
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +00002878} DEVMODEW, *PDEVMODEW, *LPDEVMODEW;
Veksler Michael1346a3c1998-12-15 11:15:35 +00002879
2880DECL_WINELIB_TYPE_AW(DEVMODE)
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +00002881DECL_WINELIB_TYPE_AW(PDEVMODE)
Veksler Michael1346a3c1998-12-15 11:15:35 +00002882DECL_WINELIB_TYPE_AW(LPDEVMODE)
2883
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002884#define DM_SPECVERSION 0x401
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002885#define DM_UPDATE 1
2886#define DM_COPY 2
2887#define DM_PROMPT 4
2888#define DM_MODIFY 8
2889
2890#define DM_IN_BUFFER DM_MODIFY
2891#define DM_IN_PROMPT DM_PROMPT
2892#define DM_OUT_BUFFER DM_COPY
2893#define DM_OUT_DEFAULT DM_UPDATE
2894
2895#define DM_ORIENTATION 0x00000001L
2896#define DM_PAPERSIZE 0x00000002L
2897#define DM_PAPERLENGTH 0x00000004L
2898#define DM_PAPERWIDTH 0x00000008L
2899#define DM_SCALE 0x00000010L
Huw D M Daviese39b6761999-05-17 16:20:51 +00002900#define DM_POSITION 0x00000020L
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002901#define DM_COPIES 0x00000100L
2902#define DM_DEFAULTSOURCE 0x00000200L
2903#define DM_PRINTQUALITY 0x00000400L
2904#define DM_COLOR 0x00000800L
2905#define DM_DUPLEX 0x00001000L
2906#define DM_YRESOLUTION 0x00002000L
2907#define DM_TTOPTION 0x00004000L
Huw D M Daviese39b6761999-05-17 16:20:51 +00002908#define DM_COLLATE 0x00008000L
2909#define DM_FORMNAME 0x00010000L
2910#define DM_LOGPIXELS 0x00020000L
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002911#define DM_BITSPERPEL 0x00040000L
2912#define DM_PELSWIDTH 0x00080000L
2913#define DM_PELSHEIGHT 0x00100000L
2914#define DM_DISPLAYFLAGS 0x00200000L
2915#define DM_DISPLAYFREQUENCY 0x00400000L
Huw D M Daviese39b6761999-05-17 16:20:51 +00002916#define DM_ICMMETHOD 0x00800000L
2917#define DM_ICMINTENT 0x01000000L
2918#define DM_MEDIATYPE 0x02000000L
2919#define DM_DITHERTYPE 0x04000000L
2920#define DM_PANNINGWIDTH 0x08000000L
2921#define DM_PANNINGHEIGHT 0x10000000L
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002922
2923#define DMORIENT_PORTRAIT 1
2924#define DMORIENT_LANDSCAPE 2
2925
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002926#define DMPAPER_FIRST DMPAPER_LETTER
2927#define DMPAPER_LETTER 1
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002928#define DMPAPER_LETTERSMALL 2
2929#define DMPAPER_TABLOID 3
2930#define DMPAPER_LEDGER 4
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002931#define DMPAPER_LEGAL 5
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002932#define DMPAPER_STATEMENT 6
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002933#define DMPAPER_EXECUTIVE 7
2934#define DMPAPER_A3 8
2935#define DMPAPER_A4 9
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002936#define DMPAPER_A4SMALL 10
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002937#define DMPAPER_A5 11
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002938#define DMPAPER_B4 12
2939#define DMPAPER_B5 13
2940#define DMPAPER_FOLIO 14
2941#define DMPAPER_QUARTO 15
2942#define DMPAPER_10X14 16
2943#define DMPAPER_11X17 17
2944#define DMPAPER_NOTE 18
2945#define DMPAPER_ENV_9 19
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002946#define DMPAPER_ENV_10 20
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002947#define DMPAPER_ENV_11 21
2948#define DMPAPER_ENV_12 22
2949#define DMPAPER_ENV_14 23
2950#define DMPAPER_CSHEET 24
2951#define DMPAPER_DSHEET 25
2952#define DMPAPER_ESHEET 26
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002953#define DMPAPER_ENV_DL 27
2954#define DMPAPER_ENV_C5 28
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002955#define DMPAPER_ENV_C3 29
2956#define DMPAPER_ENV_C4 30
2957#define DMPAPER_ENV_C6 31
2958#define DMPAPER_ENV_C65 32
2959#define DMPAPER_ENV_B4 33
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002960#define DMPAPER_ENV_B5 34
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002961#define DMPAPER_ENV_B6 35
2962#define DMPAPER_ENV_ITALY 36
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002963#define DMPAPER_ENV_MONARCH 37
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002964#define DMPAPER_ENV_PERSONAL 38
2965#define DMPAPER_FANFOLD_US 39
2966#define DMPAPER_FANFOLD_STD_GERMAN 40
2967#define DMPAPER_FANFOLD_LGL_GERMAN 41
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002968#define DMPAPER_ISO_B4 42
2969#define DMPAPER_JAPANESE_POSTCARD 43
2970#define DMPAPER_9X11 44
2971#define DMPAPER_10X11 45
2972#define DMPAPER_15X11 46
2973#define DMPAPER_ENV_INVITE 47
2974#define DMPAPER_RESERVED_48 48
2975#define DMPAPER_RESERVED_49 49
2976#define DMPAPER_LETTER_EXTRA 50
2977#define DMPAPER_LEGAL_EXTRA 51
2978#define DMPAPER_TABLOID_EXTRA 52
2979#define DMPAPER_A4_EXTRA 53
2980#define DMPAPER_LETTER_TRANSVERSE 54
2981#define DMPAPER_A4_TRANSVERSE 55
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002982#define DMPAPER_LETTER_EXTRA_TRANSVERSE 56
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002983#define DMPAPER_A_PLUS 57
2984#define DMPAPER_B_PLUS 58
2985#define DMPAPER_LETTER_PLUS 59
2986#define DMPAPER_A4_PLUS 60
2987#define DMPAPER_A5_TRANSVERSE 61
2988#define DMPAPER_B5_TRANSVERSE 62
2989#define DMPAPER_A3_EXTRA 63
2990#define DMPAPER_A5_EXTRA 64
2991#define DMPAPER_B5_EXTRA 65
2992#define DMPAPER_A2 66
2993#define DMPAPER_A3_TRANSVERSE 67
Huw D M Davies0f184bf1999-07-27 16:09:40 +00002994#define DMPAPER_A3_EXTRA_TRANSVERSE 68
2995#define DMPAPER_DBL_JAPANESE_POSTCARD 69
Huw D M Davies6dd35691999-09-10 14:36:49 +00002996#define DMPAPER_A6 70
2997#define DMPAPER_JENV_KAKU2 71
2998#define DMPAPER_JENV_KAKU3 72
2999#define DMPAPER_JENV_CHOU3 73
3000#define DMPAPER_JENV_CHOU4 74
3001#define DMPAPER_LETTER_ROTATED 75
3002#define DMPAPER_A3_ROTATED 76
3003#define DMPAPER_A4_ROTATED 77
3004#define DMPAPER_A5_ROTATED 78
3005#define DMPAPER_B4_JIS_ROTATED 79
3006#define DMPAPER_B5_JIS_ROTATED 80
Huw D M Davies0f184bf1999-07-27 16:09:40 +00003007#define DMPAPER_JAPANESE_POSTCARD_ROTATED 81
3008#define DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED 82
Huw D M Davies6dd35691999-09-10 14:36:49 +00003009#define DMPAPER_A6_ROTATED 83
3010#define DMPAPER_JENV_KAKU2_ROTATED 84
3011#define DMPAPER_JENV_KAKU3_ROTATED 85
3012#define DMPAPER_JENV_CHOU3_ROTATED 86
3013#define DMPAPER_JENV_CHOU4_ROTATED 87
3014#define DMPAPER_B6_JIS 88
3015#define DMPAPER_B6_JIS_ROTATED 89
3016#define DMPAPER_12X11 90
3017#define DMPAPER_JENV_YOU4 91
3018#define DMPAPER_JENV_YOU4_ROTATED 92
3019#define DMPAPER_P16K 93
3020#define DMPAPER_P32K 94
3021#define DMPAPER_P32KBIG 95
3022#define DMPAPER_PENV_1 96
3023#define DMPAPER_PENV_2 97
3024#define DMPAPER_PENV_3 98
3025#define DMPAPER_PENV_4 99
3026#define DMPAPER_PENV_5 100
3027#define DMPAPER_PENV_6 101
3028#define DMPAPER_PENV_7 102
3029#define DMPAPER_PENV_8 103
3030#define DMPAPER_PENV_9 104
3031#define DMPAPER_PENV_10 105
3032#define DMPAPER_P16K_ROTATED 106
3033#define DMPAPER_P32K_ROTATED 107
3034#define DMPAPER_P32KBIG_ROTATED 108
3035#define DMPAPER_PENV_1_ROTATED 109
3036#define DMPAPER_PENV_2_ROTATED 110
3037#define DMPAPER_PENV_3_ROTATED 111
3038#define DMPAPER_PENV_4_ROTATED 112
3039#define DMPAPER_PENV_5_ROTATED 113
3040#define DMPAPER_PENV_6_ROTATED 114
3041#define DMPAPER_PENV_7_ROTATED 115
3042#define DMPAPER_PENV_8_ROTATED 116
3043#define DMPAPER_PENV_9_ROTATED 117
3044#define DMPAPER_PENV_10_ROTATED 118
3045
3046#define DMPAPER_LAST DMPAPER_PENV_10_ROTATED
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003047#define DMPAPER_USER 256
Huw D M Daviesed6d4591999-03-28 15:20:00 +00003048
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003049#define DMBIN_FIRST DMBIN_UPPER
Huw D M Daviesed6d4591999-03-28 15:20:00 +00003050#define DMBIN_UPPER 1
Huw D M Davies6dd35691999-09-10 14:36:49 +00003051#define DMBIN_ONLYONE 1
Huw D M Daviesed6d4591999-03-28 15:20:00 +00003052#define DMBIN_LOWER 2
3053#define DMBIN_MIDDLE 3
3054#define DMBIN_MANUAL 4
3055#define DMBIN_ENVELOPE 5
3056#define DMBIN_ENVMANUAL 6
3057#define DMBIN_AUTO 7
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003058#define DMBIN_TRACTOR 8
3059#define DMBIN_SMALLFMT 9
3060#define DMBIN_LARGEFMT 10
Huw D M Daviesed6d4591999-03-28 15:20:00 +00003061#define DMBIN_LARGECAPACITY 11
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003062#define DMBIN_CASSETTE 14
3063#define DMBIN_FORMSOURCE 15
3064#define DMBIN_LAST DMBIN_FORMSOURCE
3065#define DMBIN_USER 256
3066
3067#define DMRES_DRAFT (-1)
3068#define DMRES_LOW (-2)
3069#define DMRES_MEDIUM (-3)
3070#define DMRES_HIGH (-4)
Huw D M Daviesed6d4591999-03-28 15:20:00 +00003071
3072#define DMCOLOR_MONOCHROME 1
3073#define DMCOLOR_COLOR 2
3074
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003075#define DMDUP_SIMPLEX 1
3076#define DMDUP_VERTICAL 2
3077#define DMDUP_HORIZONTAL 3
3078
Huw D M Daviesed6d4591999-03-28 15:20:00 +00003079#define DMTT_BITMAP 1
3080#define DMTT_DOWNLOAD 2
3081#define DMTT_SUBDEV 3
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003082#define DMTT_DOWNLOAD_OUTLINE 4
Huw D M Daviesed6d4591999-03-28 15:20:00 +00003083
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003084#define DMCOLLATE_FALSE 0
3085#define DMCOLLATE_TRUE 1
3086
3087#define DMICMMETHOD_NONE 1
3088#define DMICMMETHOD_SYSTEM 2
3089#define DMICMMETHOD_DRIVER 3
3090#define DMICMMETHOD_DEVICE 4
3091#define DMICMMETHOD_USER 256
3092
3093#define DMICM_SATURATE 1
3094#define DMICM_CONTRAST 2
3095#define DMICM_COLORMETRIC 3
3096#define DMICM_USER 256
3097
3098#define DMMEDIA_STANDARD 1
3099#define DMMEDIA_TRANSPARENCY 2
3100#define DMMEDIA_GLOSSY 3
3101#define DMMEDIA_USER 256
3102
3103#define DMDITHER_NONE 1
3104#define DMDITHER_COARSE 2
3105#define DMDITHER_FINE 3
3106#define DMDITHER_LINEART 4
3107#define DMDITHER_GRAYSCALE 5
3108#define DMDITHER_USER 256
Veksler Michael1346a3c1998-12-15 11:15:35 +00003109
Vincent BĂ©ron9a624912002-05-31 23:06:46 +00003110typedef struct
Veksler Michael1346a3c1998-12-15 11:15:35 +00003111{
Alexandre Julliarda3960291999-02-26 11:11:13 +00003112 INT cbSize;
Veksler Michael1346a3c1998-12-15 11:15:35 +00003113 LPCSTR lpszDocName;
3114 LPCSTR lpszOutput;
3115 LPCSTR lpszDatatype;
3116 DWORD fwType;
Alexandre Julliarda3960291999-02-26 11:11:13 +00003117} DOCINFOA, *LPDOCINFOA;
Veksler Michael1346a3c1998-12-15 11:15:35 +00003118
Vincent BĂ©ron9a624912002-05-31 23:06:46 +00003119typedef struct
Veksler Michael1346a3c1998-12-15 11:15:35 +00003120{
Alexandre Julliarda3960291999-02-26 11:11:13 +00003121 INT cbSize;
Veksler Michael1346a3c1998-12-15 11:15:35 +00003122 LPCWSTR lpszDocName;
3123 LPCWSTR lpszOutput;
3124 LPCWSTR lpszDatatype;
3125 DWORD fwType;
Alexandre Julliarda3960291999-02-26 11:11:13 +00003126} DOCINFOW, *LPDOCINFOW;
Veksler Michael1346a3c1998-12-15 11:15:35 +00003127
3128DECL_WINELIB_TYPE_AW(DOCINFO)
3129DECL_WINELIB_TYPE_AW(LPDOCINFO)
3130
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003131#define DI_APPBANDING 0x0001
Veksler Michael1346a3c1998-12-15 11:15:35 +00003132
Brad Pepers0bdff361999-02-09 15:37:16 +00003133/* Flags for PolyDraw and GetPath */
3134#define PT_CLOSEFIGURE 0x0001
3135#define PT_LINETO 0x0002
3136#define PT_BEZIERTO 0x0004
3137#define PT_MOVETO 0x0006
3138
Veksler Michael1346a3c1998-12-15 11:15:35 +00003139#define RDH_RECTANGLES 1
3140
3141typedef struct _RGNDATAHEADER {
3142 DWORD dwSize;
3143 DWORD iType;
3144 DWORD nCount;
3145 DWORD nRgnSize;
Alexandre Julliarda3960291999-02-26 11:11:13 +00003146 RECT rcBound;
Francois Gouget6c97e452000-11-10 22:33:45 +00003147} RGNDATAHEADER,*PRGNDATAHEADER;
Veksler Michael1346a3c1998-12-15 11:15:35 +00003148
3149typedef struct _RGNDATA {
3150 RGNDATAHEADER rdh;
3151 char Buffer[1];
3152} RGNDATA,*PRGNDATA,*LPRGNDATA;
3153
Patrik Stridvallf94462f2002-01-31 23:22:07 +00003154typedef BOOL (CALLBACK *ABORTPROC)(HDC, INT);
Francois Gouget815d3201998-12-26 11:57:38 +00003155
Marcus Meissner8388f671999-09-19 12:09:23 +00003156typedef struct {
3157 DWORD cb;
Dmitry Timoshkov6b6596a2001-11-23 18:44:43 +00003158 CHAR DeviceName[32];
3159 CHAR DeviceString[128];
Marcus Meissner8388f671999-09-19 12:09:23 +00003160 DWORD StateFlags;
Dmitry Timoshkov6b6596a2001-11-23 18:44:43 +00003161 CHAR DeviceID[128];
3162 CHAR DeviceKey[128];
Vincent BĂ©ron9a624912002-05-31 23:06:46 +00003163} DISPLAY_DEVICEA,*PDISPLAY_DEVICEA,*LPDISPLAY_DEVICEA;
Marcus Meissner8388f671999-09-19 12:09:23 +00003164
3165typedef struct {
3166 DWORD cb;
3167 WCHAR DeviceName[32];
3168 WCHAR DeviceString[128];
3169 DWORD StateFlags;
Dmitry Timoshkov6b6596a2001-11-23 18:44:43 +00003170 WCHAR DeviceID[128];
3171 WCHAR DeviceKey[128];
Vincent BĂ©ron9a624912002-05-31 23:06:46 +00003172} DISPLAY_DEVICEW,*PDISPLAY_DEVICEW,*LPDISPLAY_DEVICEW;
Patrik Stridvall0ee98cc2000-02-26 13:17:55 +00003173DECL_WINELIB_TYPE_AW(DISPLAY_DEVICE)
3174DECL_WINELIB_TYPE_AW(PDISPLAY_DEVICE)
3175DECL_WINELIB_TYPE_AW(LPDISPLAY_DEVICE)
Marcus Meissner8388f671999-09-19 12:09:23 +00003176
3177/* DISPLAY_DEVICE.StateFlags (?)*/
3178#define DISPLAY_DEVICE_ATTACHED_TO_DESKTOP 0x00000001
3179#define DISPLAY_DEVICE_MULTI_DRIVER 0x00000002
3180#define DISPLAY_DEVICE_PRIMARY_DEVICE 0x00000004
3181#define DISPLAY_DEVICE_MIRRORING_DRIVER 0x00000008
3182#define DISPLAY_DEVICE_VGA_COMPATIBLE 0x00000010
3183
Leo van den Berg39bcf9d2002-03-19 02:14:34 +00003184typedef USHORT COLOR16;
3185
3186typedef struct _TRIVERTEX
3187{
3188 LONG x;
3189 LONG y;
3190 COLOR16 Red;
3191 COLOR16 Green;
3192 COLOR16 Blue;
3193 COLOR16 Alpha;
3194} TRIVERTEX, *PTRIVERTEX, *LPTRIVERTEX;
3195
3196typedef struct _GRADIENT_TRIANGLE
3197{
3198 ULONG Vertex1;
3199 ULONG Vertex2;
3200 ULONG Vertex3;
3201} GRADIENT_TRIANGLE, *PGRADIENT_TRIANGLE, *LPGRADIENT_TRIANGLE;
3202
3203typedef struct _GRADIENT_RECT
3204{
3205 ULONG UpperLeft;
3206 ULONG LowerRight;
3207} GRADIENT_RECT, *PGRADIENT_RECT, *LPGRADIENT_RECT;
3208
Kevin Koltzauac05d0d2004-04-14 19:35:24 +00003209#define AC_SRC_OVER 0x00
3210#define AC_SRC_ALPHA 0x01
3211
Leo van den Berg39bcf9d2002-03-19 02:14:34 +00003212typedef struct _BLENDFUNCTION
3213{
3214 BYTE BlendOp;
3215 BYTE BlendFlags;
3216 BYTE SourceConstantAlpha;
3217 BYTE AlphaFormat;
3218} BLENDFUNCTION, *PBLENDFUNCTION;
3219
3220#define GRADIENT_FILL_RECT_H 0x00000000
3221#define GRADIENT_FILL_RECT_V 0x00000001
3222#define GRADIENT_FILL_TRIANGLE 0x00000002
3223#define GRADIENT_FILL_OP_FLAG 0x000000ff
3224
Huw D M Davies92bb19f2001-09-07 15:27:51 +00003225#define GDI_ERROR (0xFFFFFFFFL)
3226#define HGDI_ERROR ((HANDLE)0xFFFFFFFFL)
3227
Huw D M Davies8da26fb2002-06-22 01:19:29 +00003228/* AddFontResourceEx flags */
3229#define FR_PRIVATE 0x10
3230#define FR_NOT_ENUM 0x20
3231
RĂ©mi Assailly60cd0922004-12-01 15:30:53 +00003232/* Mirroring flags */
3233#define LAYOUT_LTR 0x00000000
3234#define LAYOUT_RTL 0x00000001
3235#define LAYOUT_BITMAPORIENTATIONPRESERVED 0x00000008
3236#define NOMIRRORBITMAP 0x80000000
3237
Marcus Meissnera42e6ae2005-09-06 14:12:17 +00003238/* For DRAWPATTERNRECT Escape */
3239typedef struct _DRAWPATRECT
3240{
3241 POINT ptPosition;
3242 POINT ptSize;
3243 WORD wStyle;
3244 WORD wPattern;
3245} DRAWPATRECT, *PDRAWPATRECT;
Huw D M Davies8da26fb2002-06-22 01:19:29 +00003246
Leo van den Berg39bcf9d2002-03-19 02:14:34 +00003247INT WINAPI AbortDoc(HDC);
3248BOOL WINAPI AbortPath(HDC);
3249INT WINAPI AddFontResourceA(LPCSTR);
3250INT WINAPI AddFontResourceW(LPCWSTR);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003251#define AddFontResource WINELIB_NAME_AW(AddFontResource)
Huw D M Davies8da26fb2002-06-22 01:19:29 +00003252INT WINAPI AddFontResourceExA(LPCSTR, DWORD, PVOID);
3253INT WINAPI AddFontResourceExW(LPCWSTR, DWORD, PVOID);
3254#define AddFontResourceEx WINELIB_NAME_AW(AddFontResourceEx)
Leo van den Berg39bcf9d2002-03-19 02:14:34 +00003255BOOL WINAPI AlphaBlend(HDC,int,int,int,int,HDC,int,int,int,int,BLENDFUNCTION);
3256BOOL WINAPI AngleArc(HDC, INT, INT, DWORD, FLOAT, FLOAT);
3257BOOL WINAPI AnimatePalette(HPALETTE,UINT,UINT,const PALETTEENTRY*);
3258BOOL WINAPI Arc(HDC,INT,INT,INT,INT,INT,INT,INT,INT);
Vincent BĂ©ron9a624912002-05-31 23:06:46 +00003259BOOL WINAPI ArcTo(HDC, INT, INT, INT, INT, INT, INT, INT, INT);
Leo van den Berg39bcf9d2002-03-19 02:14:34 +00003260BOOL WINAPI BeginPath(HDC);
3261BOOL WINAPI BitBlt(HDC,INT,INT,INT,INT,HDC,INT,INT,DWORD);
Eric Pouechbde649c2004-05-18 20:43:29 +00003262INT WINAPI ChoosePixelFormat(HDC,const PIXELFORMATDESCRIPTOR*);
Leo van den Berg39bcf9d2002-03-19 02:14:34 +00003263BOOL WINAPI Chord(HDC,INT,INT,INT,INT,INT,INT,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003264HENHMETAFILE WINAPI CloseEnhMetaFile(HDC);
Leo van den Berg39bcf9d2002-03-19 02:14:34 +00003265BOOL WINAPI CloseFigure(HDC);
3266HMETAFILE WINAPI CloseMetaFile(HDC);
3267INT WINAPI CombineRgn(HRGN,HRGN,HRGN,INT);
3268BOOL WINAPI CombineTransform(LPXFORM,const XFORM *,const XFORM *);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003269HENHMETAFILE WINAPI CopyEnhMetaFileA(HENHMETAFILE,LPCSTR);
3270HENHMETAFILE WINAPI CopyEnhMetaFileW(HENHMETAFILE,LPCWSTR);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003271#define CopyEnhMetaFile WINELIB_NAME_AW(CopyEnhMetaFile)
Leo van den Berg39bcf9d2002-03-19 02:14:34 +00003272HMETAFILE WINAPI CopyMetaFileA(HMETAFILE,LPCSTR);
3273HMETAFILE WINAPI CopyMetaFileW(HMETAFILE,LPCWSTR);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003274#define CopyMetaFile WINELIB_NAME_AW(CopyMetaFile)
Leo van den Berg39bcf9d2002-03-19 02:14:34 +00003275HBITMAP WINAPI CreateBitmap(INT,INT,UINT,UINT,LPCVOID);
3276HBITMAP WINAPI CreateBitmapIndirect(const BITMAP*);
3277HBRUSH WINAPI CreateBrushIndirect(const LOGBRUSH*);
Peter Hunnisettf2b84922000-01-15 22:17:49 +00003278HCOLORSPACE WINAPI CreateColorSpaceA(LPLOGCOLORSPACEA);
3279HCOLORSPACE WINAPI CreateColorSpaceW(LPLOGCOLORSPACEW);
3280#define CreateColorSpace WINELIB_NAME_AW(CreateColorSpace)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003281HBITMAP WINAPI CreateCompatibleBitmap(HDC,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003282HDC WINAPI CreateCompatibleDC(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003283HDC WINAPI CreateDCA(LPCSTR,LPCSTR,LPCSTR,const DEVMODEA*);
3284HDC WINAPI CreateDCW(LPCWSTR,LPCWSTR,LPCWSTR,const DEVMODEW*);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003285#define CreateDC WINELIB_NAME_AW(CreateDC)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003286HBITMAP WINAPI CreateDIBitmap(HDC,const BITMAPINFOHEADER*,DWORD,
3287 LPCVOID,const BITMAPINFO*,UINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003288HBRUSH WINAPI CreateDIBPatternBrush(HGLOBAL,UINT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003289HBRUSH WINAPI CreateDIBPatternBrushPt(const void*,UINT);
Dmitry Timoshkov21fc3c82004-03-12 19:46:12 +00003290HBITMAP WINAPI CreateDIBSection(HDC, CONST BITMAPINFO *, UINT,
3291 VOID **, HANDLE, DWORD offset);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003292HBITMAP WINAPI CreateDiscardableBitmap(HDC,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003293HRGN WINAPI CreateEllipticRgn(INT,INT,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003294HRGN WINAPI CreateEllipticRgnIndirect(const RECT *);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003295HDC WINAPI CreateEnhMetaFileA(HDC,LPCSTR,const RECT*,LPCSTR);
3296HDC WINAPI CreateEnhMetaFileW(HDC,LPCWSTR,const RECT*,LPCWSTR);
3297#define CreateEnhMetaFile WINELIB_NAME_AW(CreateEnhMetaFile)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003298HFONT WINAPI CreateFontA(INT,INT,INT,INT,INT,DWORD,DWORD,
Veksler Michael1346a3c1998-12-15 11:15:35 +00003299 DWORD,DWORD,DWORD,DWORD,DWORD,DWORD,LPCSTR);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003300HFONT WINAPI CreateFontW(INT,INT,INT,INT,INT,DWORD,DWORD,
Veksler Michael1346a3c1998-12-15 11:15:35 +00003301 DWORD,DWORD,DWORD,DWORD,DWORD,DWORD,LPCWSTR);
3302#define CreateFont WINELIB_NAME_AW(CreateFont)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003303HFONT WINAPI CreateFontIndirectA(const LOGFONTA*);
3304HFONT WINAPI CreateFontIndirectW(const LOGFONTW*);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003305#define CreateFontIndirect WINELIB_NAME_AW(CreateFontIndirect)
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003306HPALETTE WINAPI CreateHalftonePalette(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003307HBRUSH WINAPI CreateHatchBrush(INT,COLORREF);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003308HDC WINAPI CreateICA(LPCSTR,LPCSTR,LPCSTR,const DEVMODEA*);
3309HDC WINAPI CreateICW(LPCWSTR,LPCWSTR,LPCWSTR,const DEVMODEW*);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003310#define CreateIC WINELIB_NAME_AW(CreateIC)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003311HDC WINAPI CreateMetaFileA(LPCSTR);
3312HDC WINAPI CreateMetaFileW(LPCWSTR);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003313#define CreateMetaFile WINELIB_NAME_AW(CreateMetaFile)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003314HPALETTE WINAPI CreatePalette(const LOGPALETTE*);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003315HBRUSH WINAPI CreatePatternBrush(HBITMAP);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003316HPEN WINAPI CreatePen(INT,INT,COLORREF);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003317HPEN WINAPI CreatePenIndirect(const LOGPEN*);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003318HRGN WINAPI CreatePolyPolygonRgn(const POINT*,const INT*,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003319HRGN WINAPI CreatePolygonRgn(const POINT*,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003320HRGN WINAPI CreateRectRgn(INT,INT,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003321HRGN WINAPI CreateRectRgnIndirect(const RECT*);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003322HRGN WINAPI CreateRoundRectRgn(INT,INT,INT,INT,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003323BOOL WINAPI CreateScalableFontResourceA(DWORD,LPCSTR,LPCSTR,LPCSTR);
3324BOOL WINAPI CreateScalableFontResourceW(DWORD,LPCWSTR,LPCWSTR,LPCWSTR);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003325#define CreateScalableFontResource WINELIB_NAME_AW(CreateScalableFontResource)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003326HBRUSH WINAPI CreateSolidBrush(COLORREF);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003327BOOL WINAPI DPtoLP(HDC,LPPOINT,INT);
Peter Hunnisettf2b84922000-01-15 22:17:49 +00003328BOOL WINAPI DeleteColorSpace(HCOLORSPACE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003329BOOL WINAPI DeleteDC(HDC);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003330BOOL WINAPI DeleteEnhMetaFile(HENHMETAFILE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003331BOOL WINAPI DeleteMetaFile(HMETAFILE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003332BOOL WINAPI DeleteObject(HGDIOBJ);
3333INT WINAPI DescribePixelFormat(HDC,int,UINT,
Veksler Michael1346a3c1998-12-15 11:15:35 +00003334 LPPIXELFORMATDESCRIPTOR);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003335INT WINAPI DrawEscape(HDC,INT,INT,LPCSTR);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003336BOOL WINAPI Ellipse(HDC,INT,INT,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003337INT WINAPI EndDoc(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003338BOOL WINAPI EndPath(HDC);
Huw D M Davies280aeb92000-03-30 20:22:41 +00003339BOOL WINAPI EnumEnhMetaFile(HDC,HENHMETAFILE,ENHMFENUMPROC,LPVOID,const RECT*);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003340INT WINAPI EnumFontFamiliesA(HDC,LPCSTR,FONTENUMPROCA,LPARAM);
3341INT WINAPI EnumFontFamiliesW(HDC,LPCWSTR,FONTENUMPROCW,LPARAM);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003342#define EnumFontFamilies WINELIB_NAME_AW(EnumFontFamilies)
Patrik Stridvallc99c0222002-11-13 04:13:42 +00003343INT WINAPI EnumFontFamiliesExA(HDC,LPLOGFONTA,FONTENUMPROCA,LPARAM,DWORD);
3344INT WINAPI EnumFontFamiliesExW(HDC,LPLOGFONTW,FONTENUMPROCW,LPARAM,DWORD);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003345#define EnumFontFamiliesEx WINELIB_NAME_AW(EnumFontFamiliesEx)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003346INT WINAPI EnumFontsA(HDC,LPCSTR,FONTENUMPROCA,LPARAM);
3347INT WINAPI EnumFontsW(HDC,LPCWSTR,FONTENUMPROCW,LPARAM);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003348#define EnumFonts WINELIB_NAME_AW(EnumFonts)
Marcus Meissner21973112004-01-13 05:20:17 +00003349INT WINAPI EnumICMProfilesA(HDC,ICMENUMPROCA,LPARAM);
3350INT WINAPI EnumICMProfilesW(HDC,ICMENUMPROCW,LPARAM);
3351#define EnumICMProfiles WINELIB_NAME_AW(EnumICMProfiles)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003352BOOL WINAPI EnumMetaFile(HDC,HMETAFILE,MFENUMPROC,LPARAM);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003353INT WINAPI EnumObjects(HDC,INT,GOBJENUMPROC,LPARAM);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003354BOOL WINAPI EqualRgn(HRGN,HRGN);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003355INT WINAPI Escape(HDC,INT,INT,LPCSTR,LPVOID);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003356INT WINAPI ExcludeClipRect(HDC,INT,INT,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003357HPEN WINAPI ExtCreatePen(DWORD,DWORD,const LOGBRUSH*,DWORD,const DWORD*);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003358HRGN WINAPI ExtCreateRegion(const XFORM*,DWORD,const RGNDATA*);
3359INT WINAPI ExtEscape(HDC,INT,INT,LPCSTR,INT,LPSTR);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003360BOOL WINAPI ExtFloodFill(HDC,INT,INT,COLORREF,UINT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003361INT WINAPI ExtSelectClipRgn(HDC,HRGN,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003362BOOL WINAPI ExtTextOutA(HDC,INT,INT,UINT,const RECT*,
3363 LPCSTR,UINT,const INT*);
3364BOOL WINAPI ExtTextOutW(HDC,INT,INT,UINT,const RECT*,
3365 LPCWSTR,UINT,const INT*);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003366#define ExtTextOut WINELIB_NAME_AW(ExtTextOut)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003367BOOL WINAPI FillPath(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003368BOOL WINAPI FillRgn(HDC,HRGN,HBRUSH);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003369BOOL WINAPI FixBrushOrgEx(HDC,INT,INT,LPPOINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003370BOOL WINAPI FlattenPath(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003371BOOL WINAPI FloodFill(HDC,INT,INT,COLORREF);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003372BOOL WINAPI FrameRgn(HDC,HRGN,HBRUSH,INT,INT);
Mike McCormack04efa132005-04-15 14:08:18 +00003373BOOL WINAPI GdiAlphaBlend(HDC,int,int,int,int,HDC,int,int,int,int,BLENDFUNCTION);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003374BOOL WINAPI GdiComment(HDC,UINT,const BYTE *);
Dmitry Timoshkov3a910c72003-08-12 20:42:18 +00003375DEVMODEW * WINAPI GdiConvertToDevmodeW(const DEVMODEA *);
Francois Gougetd4db6822001-10-08 20:31:59 +00003376BOOL WINAPI GdiFlush(void);
Robert Shearman0ceb6b62005-07-18 18:05:04 +00003377LONG WINAPI GdiGetCharDimensions(HDC, LPTEXTMETRICW, LONG *);
Frank Richter567b6fa2005-07-15 16:31:55 +00003378BOOL WINAPI GdiGradientFill(HDC,PTRIVERTEX,ULONG,PVOID,ULONG,ULONG);
Mike McCormack04efa132005-04-15 14:08:18 +00003379BOOL WINAPI GdiIsMetaFileDC(HDC);
3380BOOL WINAPI GdiIsMetaPrintDC(HDC);
Mike McCormack7bb17572005-06-13 10:00:53 +00003381BOOL WINAPI GdiIsPlayMetafileDC(HDC);
Mike McCormack04efa132005-04-15 14:08:18 +00003382BOOL WINAPI GdiTransparentBlt(HDC,int,int,int,int,HDC,int,int,int,int,UINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003383INT WINAPI GetArcDirection(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003384BOOL WINAPI GetAspectRatioFilterEx(HDC,LPSIZE);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003385LONG WINAPI GetBitmapBits(HBITMAP,LONG,LPVOID);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003386BOOL WINAPI GetBitmapDimensionEx(HBITMAP,LPSIZE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003387BOOL WINAPI GetBrushOrgEx(HDC,LPPOINT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003388COLORREF WINAPI GetBkColor(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003389INT WINAPI GetBkMode(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003390UINT WINAPI GetBoundsRect(HDC,LPRECT,UINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003391BOOL WINAPI GetCharABCWidthsA(HDC,UINT,UINT,LPABC);
3392BOOL WINAPI GetCharABCWidthsW(HDC,UINT,UINT,LPABC);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003393#define GetCharABCWidths WINELIB_NAME_AW(GetCharABCWidths)
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003394BOOL WINAPI GetCharABCWidthsFloatA(HDC,UINT,UINT,LPABCFLOAT);
3395BOOL WINAPI GetCharABCWidthsFloatW(HDC,UINT,UINT,LPABCFLOAT);
3396#define GetCharABCWidthsFloat WINELIB_NAME_AW(GetCharABCWidthsFloat)
3397DWORD WINAPI GetCharacterPlacementA(HDC,LPCSTR,INT,INT,GCP_RESULTSA*,DWORD);
3398DWORD WINAPI GetCharacterPlacementW(HDC,LPCWSTR,INT,INT,GCP_RESULTSW*,DWORD);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003399#define GetCharacterPlacement WINELIB_NAME_AW(GetCharacterPlacement)
Alexandre Julliard2fdc4dc2003-11-26 04:11:56 +00003400BOOL WINAPI GetCharWidth32A(HDC,UINT,UINT,LPINT);
3401BOOL WINAPI GetCharWidth32W(HDC,UINT,UINT,LPINT);
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +00003402#define GetCharWidth32 WINELIB_NAME_AW(GetCharWidth32)
Alexandre Julliard2fdc4dc2003-11-26 04:11:56 +00003403BOOL WINAPI GetCharWidthA(HDC,UINT,UINT,LPINT);
3404BOOL WINAPI GetCharWidthW(HDC,UINT,UINT,LPINT);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003405#define GetCharWidth WINELIB_NAME_AW(GetCharWidth)
Alexandre Julliard2fdc4dc2003-11-26 04:11:56 +00003406BOOL WINAPI GetCharWidthFloatA(HDC,UINT,UINT,PFLOAT);
3407BOOL WINAPI GetCharWidthFloatW(HDC,UINT,UINT,PFLOAT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003408#define GetCharWidthFloat WINELIB_NAME_AW(GetCharWidthFloat)
Andreas Mohrfe2dcf72004-07-08 20:17:59 +00003409INT WINAPI GetClipBox(HDC,LPRECT);
3410INT WINAPI GetClipRgn(HDC,HRGN);
3411BOOL WINAPI GetColorAdjustment(HDC, LPCOLORADJUSTMENT);
Dmitry Timoshkov62d3ab92005-10-26 10:10:23 +00003412HCOLORSPACE WINAPI GetColorSpace(HDC);
Andreas Mohrfe2dcf72004-07-08 20:17:59 +00003413HGDIOBJ WINAPI GetCurrentObject(HDC,UINT);
3414BOOL WINAPI GetCurrentPositionEx(HDC,LPPOINT);
3415INT WINAPI GetDeviceCaps(HDC,INT);
3416BOOL WINAPI GetDeviceGammaRamp(HDC,LPVOID);
3417COLORREF WINAPI GetDCBrushColor(HDC);
3418BOOL WINAPI GetDCOrgEx(HDC,LPPOINT);
3419COLORREF WINAPI GetDCPenColor(HDC);
3420UINT WINAPI GetDIBColorTable(HDC,UINT,UINT,RGBQUAD*);
3421INT WINAPI GetDIBits(HDC,HBITMAP,UINT,UINT,LPVOID,LPBITMAPINFO,UINT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003422HENHMETAFILE WINAPI GetEnhMetaFileA(LPCSTR);
3423HENHMETAFILE WINAPI GetEnhMetaFileW(LPCWSTR);
3424#define GetEnhMetaFile WINELIB_NAME_AW(GetEnhMetaFile)
3425UINT WINAPI GetEnhMetaFileBits(HENHMETAFILE,UINT,LPBYTE);
Francois Gougetd55ccfd2000-10-12 23:14:52 +00003426UINT WINAPI GetEnhMetaFileDescriptionA(HENHMETAFILE,UINT,LPSTR);
3427UINT WINAPI GetEnhMetaFileDescriptionW(HENHMETAFILE,UINT,LPWSTR);
3428#define GetEnhMetaFileDescription WINELIB_NAME_AW(GetEnhMetaFileDescription)
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003429UINT WINAPI GetEnhMetaFileHeader(HENHMETAFILE,UINT,LPENHMETAHEADER);
3430UINT WINAPI GetEnhMetaFilePaletteEntries(HENHMETAFILE,UINT,LPPALETTEENTRY);
3431DWORD WINAPI GetFontData(HDC,DWORD,DWORD,LPVOID,DWORD);
3432DWORD WINAPI GetFontLanguageInfo(HDC);
Dmitry Timoshkov2903ca12002-04-03 20:41:14 +00003433DWORD WINAPI GetGlyphIndicesA(HDC,LPCSTR,INT,LPWORD,DWORD);
3434DWORD WINAPI GetGlyphIndicesW(HDC,LPCWSTR,INT,LPWORD,DWORD);
3435#define GetGlyphIndices WINELIB_NAME_AW(GetGlyphIndices)
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003436DWORD WINAPI GetGlyphOutlineA(HDC,UINT,UINT,LPGLYPHMETRICS,DWORD,LPVOID,const MAT2*);
3437DWORD WINAPI GetGlyphOutlineW(HDC,UINT,UINT,LPGLYPHMETRICS,DWORD,LPVOID,const MAT2*);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003438#define GetGlyphOutline WINELIB_NAME_AW(GetGlyphOutline)
Hans Leidekkerfeef8952004-12-27 17:23:17 +00003439INT WINAPI GetGraphicsMode(HDC);
3440BOOL WINAPI GetICMProfileA(HDC,LPDWORD,LPSTR);
3441BOOL WINAPI GetICMProfileW(HDC,LPDWORD,LPWSTR);
3442#define GetICMProfile WINELIB_NAME_AW(GetICMProfile)
3443DWORD WINAPI GetKerningPairsA(HDC,DWORD,LPKERNINGPAIR);
3444DWORD WINAPI GetKerningPairsW(HDC,DWORD,LPKERNINGPAIR);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003445#define GetKerningPairs WINELIB_NAME_AW(GetKerningPairs)
Huw D M Daviesf64e0d71999-11-21 00:49:50 +00003446DWORD WINAPI GetLayout(HDC);
François Gouget441f8742000-12-29 03:43:43 +00003447BOOL WINAPI GetLogColorSpaceA(HCOLORSPACE,LPLOGCOLORSPACEA,DWORD);
3448BOOL WINAPI GetLogColorSpaceW(HCOLORSPACE,LPLOGCOLORSPACEW,DWORD);
3449#define GetLogColorSpace WINELIB_NAME_AW(GetLogColorSpace)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003450INT WINAPI GetMapMode(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003451HMETAFILE WINAPI GetMetaFileA(LPCSTR);
3452HMETAFILE WINAPI GetMetaFileW(LPCWSTR);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003453#define GetMetaFile WINELIB_NAME_AW(GetMetaFile)
Peter Hunnisett0cdc4d91999-12-11 23:18:10 +00003454UINT WINAPI GetMetaFileBitsEx(HMETAFILE,UINT,LPVOID);
3455INT WINAPI GetMetaRgn(HDC,HRGN);
3456BOOL WINAPI GetMiterLimit(HDC, PFLOAT);
3457DWORD WINAPI GetNearestColor(HDC,DWORD);
3458UINT WINAPI GetNearestPaletteIndex(HPALETTE,COLORREF);
Andreas Mohrfe2dcf72004-07-08 20:17:59 +00003459INT WINAPI GetObjectA(HGDIOBJ,INT,LPVOID);
3460INT WINAPI GetObjectW(HGDIOBJ,INT,LPVOID);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003461#define GetObject WINELIB_NAME_AW(GetObject)
Andreas Mohrfe2dcf72004-07-08 20:17:59 +00003462DWORD WINAPI GetObjectType(HGDIOBJ);
3463UINT WINAPI GetOutlineTextMetricsA(HDC,UINT,LPOUTLINETEXTMETRICA);
3464UINT WINAPI GetOutlineTextMetricsW(HDC,UINT,LPOUTLINETEXTMETRICW);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003465#define GetOutlineTextMetrics WINELIB_NAME_AW(GetOutlineTextMetrics)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003466UINT WINAPI GetPaletteEntries(HPALETTE,UINT,UINT,LPPALETTEENTRY);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003467INT WINAPI GetPath(HDC,LPPOINT,LPBYTE,INT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003468COLORREF WINAPI GetPixel(HDC,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003469INT WINAPI GetPixelFormat(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003470INT WINAPI GetPolyFillMode(HDC);
Robert Shearman3e80fb42004-08-20 19:26:28 +00003471INT WINAPI GetRandomRgn(HDC,HRGN,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003472BOOL WINAPI GetRasterizerCaps(LPRASTERIZER_STATUS,UINT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003473DWORD WINAPI GetRegionData(HRGN,DWORD,LPRGNDATA);
Patrik Stridvalle4174d52000-05-18 00:51:52 +00003474INT WINAPI GetRelAbs(HDC,DWORD);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003475INT WINAPI GetRgnBox(HRGN,LPRECT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003476INT WINAPI GetROP2(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003477HGDIOBJ WINAPI GetStockObject(INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003478INT WINAPI GetStretchBltMode(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003479UINT WINAPI GetSystemPaletteEntries(HDC,UINT,UINT,LPPALETTEENTRY);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003480UINT WINAPI GetSystemPaletteUse(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003481UINT WINAPI GetTextAlign(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003482INT WINAPI GetTextCharacterExtra(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003483UINT WINAPI GetTextCharset(HDC);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003484UINT WINAPI GetTextCharsetInfo(HDC,LPFONTSIGNATURE,DWORD);
3485COLORREF WINAPI GetTextColor(HDC);
3486BOOL WINAPI GetTextExtentExPointA(HDC,LPCSTR,INT,INT,
3487 LPINT,LPINT,LPSIZE);
3488BOOL WINAPI GetTextExtentExPointW(HDC,LPCWSTR,INT,INT,
3489 LPINT,LPINT,LPSIZE);
Huw D M Davies5b01b502002-04-03 22:08:27 +00003490#define GetTextExtentExPoint WINELIB_NAME_AW(GetTextExtentExPoint)
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003491BOOL WINAPI GetTextExtentPointA(HDC,LPCSTR,INT,LPSIZE);
3492BOOL WINAPI GetTextExtentPointW(HDC,LPCWSTR,INT,LPSIZE);
Francois Gouget7ae72f51999-03-13 18:19:29 +00003493#define GetTextExtentPoint WINELIB_NAME_AW(GetTextExtentPoint)
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003494BOOL WINAPI GetTextExtentPoint32A(HDC,LPCSTR,INT,LPSIZE);
3495BOOL WINAPI GetTextExtentPoint32W(HDC,LPCWSTR,INT,LPSIZE);
Francois Gouget7ae72f51999-03-13 18:19:29 +00003496#define GetTextExtentPoint32 WINELIB_NAME_AW(GetTextExtentPoint32)
Huw D M Davies5b01b502002-04-03 22:08:27 +00003497BOOL WINAPI GetTextExtentExPointI(HDC,const WORD*,INT,INT,LPINT,LPINT,LPSIZE);
3498BOOL WINAPI GetTextExtentPointI(HDC,const WORD*,INT,LPSIZE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003499INT WINAPI GetTextFaceA(HDC,INT,LPSTR);
3500INT WINAPI GetTextFaceW(HDC,INT,LPWSTR);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003501#define GetTextFace WINELIB_NAME_AW(GetTextFace)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003502BOOL WINAPI GetTextMetricsA(HDC,LPTEXTMETRICA);
3503BOOL WINAPI GetTextMetricsW(HDC,LPTEXTMETRICW);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003504#define GetTextMetrics WINELIB_NAME_AW(GetTextMetrics)
Leo van den Berg39bcf9d2002-03-19 02:14:34 +00003505BOOL WINAPI GetViewportExtEx(HDC,LPSIZE);
3506BOOL WINAPI GetViewportOrgEx(HDC,LPPOINT);
3507BOOL WINAPI GetWindowExtEx(HDC,LPSIZE);
3508BOOL WINAPI GetWindowOrgEx(HDC,LPPOINT);
Dimitrie O. Paun27a8ff22002-12-19 22:15:53 +00003509UINT WINAPI GetWinMetaFileBits(HENHMETAFILE,UINT,LPBYTE,INT,HDC);
Leo van den Berg39bcf9d2002-03-19 02:14:34 +00003510BOOL WINAPI GetWorldTransform(HDC,LPXFORM);
3511BOOL WINAPI GradientFill(HDC,PTRIVERTEX,ULONG,PVOID,ULONG,ULONG);
3512INT WINAPI IntersectClipRect(HDC,INT,INT,INT,INT);
3513BOOL WINAPI InvertRgn(HDC,HRGN);
3514BOOL WINAPI LineDDA(INT,INT,INT,INT,LINEDDAPROC,LPARAM);
3515BOOL WINAPI LineTo(HDC,INT,INT);
3516BOOL WINAPI LPtoDP(HDC,LPPOINT,INT);
3517BOOL WINAPI MaskBlt(HDC,INT,INT,INT,INT,HDC,INT,INT,HBITMAP,INT,INT,DWORD);
3518BOOL WINAPI ModifyWorldTransform(HDC,const XFORM *, DWORD);
3519BOOL WINAPI MoveToEx(HDC,INT,INT,LPPOINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003520INT WINAPI OffsetClipRgn(HDC,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003521INT WINAPI OffsetRgn(HRGN,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003522BOOL WINAPI OffsetViewportOrgEx(HDC,INT,INT,LPPOINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003523BOOL WINAPI OffsetWindowOrgEx(HDC,INT,INT,LPPOINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003524BOOL WINAPI PaintRgn(HDC,HRGN);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003525BOOL WINAPI PatBlt(HDC,INT,INT,INT,INT,DWORD);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003526HRGN WINAPI PathToRegion(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003527BOOL WINAPI Pie(HDC,INT,INT,INT,INT,INT,INT,INT,INT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003528BOOL WINAPI PlayEnhMetaFile(HDC,HENHMETAFILE,const RECT*);
3529BOOL WINAPI PlayEnhMetaFileRecord(HDC,LPHANDLETABLE,const ENHMETARECORD*,UINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003530BOOL WINAPI PlayMetaFile(HDC,HMETAFILE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003531BOOL WINAPI PlayMetaFileRecord(HDC,LPHANDLETABLE,LPMETARECORD,UINT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003532BOOL WINAPI PlgBlt(HDC,const POINT*,HDC,INT,INT,INT,INT,HBITMAP,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003533BOOL WINAPI PolyBezier(HDC,const POINT*,DWORD);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003534BOOL WINAPI PolyBezierTo(HDC,const POINT*,DWORD);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003535BOOL WINAPI PolyDraw(HDC,const POINT*,const BYTE*,DWORD);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003536BOOL WINAPI PolyPolygon(HDC,const POINT*,const INT*,UINT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003537BOOL WINAPI PolyPolyline(HDC,const POINT*,const DWORD*,DWORD);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003538BOOL WINAPI Polygon(HDC,const POINT*,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003539BOOL WINAPI Polyline(HDC,const POINT*,INT);
3540BOOL WINAPI PolylineTo(HDC,const POINT*,DWORD);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003541BOOL WINAPI PtInRegion(HRGN,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003542BOOL WINAPI PtVisible(HDC,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003543UINT WINAPI RealizePalette(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003544BOOL WINAPI Rectangle(HDC,INT,INT,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003545BOOL WINAPI RectInRegion(HRGN,const RECT *);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003546BOOL WINAPI RectVisible(HDC,const RECT*);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003547BOOL WINAPI RemoveFontResourceA(LPCSTR);
3548BOOL WINAPI RemoveFontResourceW(LPCWSTR);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003549#define RemoveFontResource WINELIB_NAME_AW(RemoveFontResource)
Huw D M Davies8da26fb2002-06-22 01:19:29 +00003550BOOL WINAPI RemoveFontResourceExA(LPCSTR, DWORD, PVOID);
3551BOOL WINAPI RemoveFontResourceExW(LPCWSTR, DWORD, PVOID);
3552#define RemoveFontResourceEx WINELIB_NAME_AW(RemoveFontResourceEx)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003553HDC WINAPI ResetDCA(HDC,const DEVMODEA *);
3554HDC WINAPI ResetDCW(HDC,const DEVMODEW *);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003555#define ResetDC WINELIB_NAME_AW(ResetDC)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003556BOOL WINAPI ResizePalette(HPALETTE,UINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003557BOOL WINAPI RestoreDC(HDC,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003558BOOL WINAPI RoundRect(HDC,INT,INT,INT,INT,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003559INT WINAPI SaveDC(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003560BOOL WINAPI ScaleViewportExtEx(HDC,INT,INT,INT,INT,LPSIZE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003561BOOL WINAPI ScaleWindowExtEx(HDC,INT,INT,INT,INT,LPSIZE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003562BOOL WINAPI SelectClipPath(HDC,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003563INT WINAPI SelectClipRgn(HDC,HRGN);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003564HGDIOBJ WINAPI SelectObject(HDC,HGDIOBJ);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003565HPALETTE WINAPI SelectPalette(HDC,HPALETTE,BOOL);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003566INT WINAPI SetAbortProc(HDC,ABORTPROC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003567INT WINAPI SetArcDirection(HDC,INT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003568LONG WINAPI SetBitmapBits(HBITMAP,LONG,LPCVOID);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003569BOOL WINAPI SetBitmapDimensionEx(HBITMAP,INT,INT,LPSIZE);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003570COLORREF WINAPI SetBkColor(HDC,COLORREF);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003571INT WINAPI SetBkMode(HDC,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003572UINT WINAPI SetBoundsRect(HDC,const RECT*,UINT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003573BOOL WINAPI SetBrushOrgEx(HDC,INT,INT,LPPOINT);
3574BOOL WINAPI SetColorAdjustment(HDC,const COLORADJUSTMENT*);
Peter Hunnisettf2b84922000-01-15 22:17:49 +00003575HCOLORSPACE WINAPI SetColorSpace(HDC,HCOLORSPACE);
Ove Kaaven27398d42001-03-20 01:55:18 +00003576BOOL WINAPI SetDeviceGammaRamp(HDC,LPVOID);
Steve Lustbader361b9e82002-11-21 03:56:29 +00003577COLORREF WINAPI SetDCBrushColor(HDC,COLORREF);
Kirill Smelkovc3c33a02003-12-01 22:35:10 +00003578COLORREF WINAPI SetDCPenColor(HDC, COLORREF);
Robert Shearmanb4eee492004-10-18 19:35:50 +00003579UINT WINAPI SetDIBColorTable(HDC,UINT,UINT,CONST RGBQUAD*);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003580INT WINAPI SetDIBits(HDC,HBITMAP,UINT,UINT,LPCVOID,const BITMAPINFO*,UINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003581INT WINAPI SetDIBitsToDevice(HDC,INT,INT,DWORD,DWORD,INT,
3582 INT,UINT,UINT,LPCVOID,const BITMAPINFO*,UINT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003583HENHMETAFILE WINAPI SetEnhMetaFileBits(UINT,const BYTE *);
Peter Hunnisett0cdc4d91999-12-11 23:18:10 +00003584INT WINAPI SetGraphicsMode(HDC,INT);
Peter Hunnisettf2b84922000-01-15 22:17:49 +00003585INT WINAPI SetICMMode(HDC,INT);
Hans Leidekkerfeef8952004-12-27 17:23:17 +00003586BOOL WINAPI SetICMProfileA(HDC,LPSTR);
3587BOOL WINAPI SetICMProfileW(HDC,LPWSTR);
3588#define SetICMProfile WINELIB_NAME_AW(SetICMProfile)
Huw D M Daviesf64e0d71999-11-21 00:49:50 +00003589DWORD WINAPI SetLayout(HDC,DWORD);
Peter Hunnisett0cdc4d91999-12-11 23:18:10 +00003590INT WINAPI SetMapMode(HDC,INT);
3591DWORD WINAPI SetMapperFlags(HDC,DWORD);
3592HMETAFILE WINAPI SetMetaFileBitsEx(UINT,const BYTE*);
3593INT WINAPI SetMetaRgn(HDC);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003594BOOL WINAPI SetMiterLimit(HDC, FLOAT, PFLOAT);
Alexandre Julliard376e6502002-06-02 21:40:24 +00003595UINT WINAPI SetPaletteEntries(HPALETTE,UINT,UINT,const PALETTEENTRY*);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003596COLORREF WINAPI SetPixel(HDC,INT,INT,COLORREF);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003597BOOL WINAPI SetPixelV(HDC,INT,INT,COLORREF);
3598BOOL WINAPI SetPixelFormat(HDC,int,const PIXELFORMATDESCRIPTOR*);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003599INT WINAPI SetPolyFillMode(HDC,INT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003600BOOL WINAPI SetRectRgn(HRGN,INT,INT,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003601INT WINAPI SetRelAbs(HDC,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003602INT WINAPI SetROP2(HDC,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003603INT WINAPI SetStretchBltMode(HDC,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003604UINT WINAPI SetSystemPaletteUse(HDC,UINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003605UINT WINAPI SetTextAlign(HDC,UINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003606INT WINAPI SetTextCharacterExtra(HDC,INT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003607COLORREF WINAPI SetTextColor(HDC,COLORREF);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003608BOOL WINAPI SetTextJustification(HDC,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003609BOOL WINAPI SetViewportExtEx(HDC,INT,INT,LPSIZE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003610BOOL WINAPI SetViewportOrgEx(HDC,INT,INT,LPPOINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003611BOOL WINAPI SetWindowExtEx(HDC,INT,INT,LPSIZE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003612BOOL WINAPI SetWindowOrgEx(HDC,INT,INT,LPPOINT);
3613HENHMETAFILE WINAPI SetWinMetaFileBits(UINT,CONST BYTE*,HDC,CONST METAFILEPICT *);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003614BOOL WINAPI SetWorldTransform(HDC,const XFORM*);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003615INT WINAPI StartDocA(HDC,const DOCINFOA*);
3616INT WINAPI StartDocW(HDC,const DOCINFOW*);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003617#define StartDoc WINELIB_NAME_AW(StartDoc)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003618INT WINAPI StartPage(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003619INT WINAPI EndPage(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003620BOOL WINAPI StretchBlt(HDC,INT,INT,INT,INT,HDC,INT,
3621 INT,INT,INT,DWORD);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003622INT WINAPI StretchDIBits(HDC,INT,INT,INT,INT,INT,INT,
3623 INT,INT,const VOID*,const BITMAPINFO*,UINT,DWORD);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003624BOOL WINAPI StrokeAndFillPath(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003625BOOL WINAPI StrokePath(HDC);
3626BOOL WINAPI SwapBuffers(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003627BOOL WINAPI TextOutA(HDC,INT,INT,LPCSTR,INT);
3628BOOL WINAPI TextOutW(HDC,INT,INT,LPCWSTR,INT);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003629#define TextOut WINELIB_NAME_AW(TextOut)
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003630BOOL WINAPI TranslateCharsetInfo(LPDWORD,LPCHARSETINFO,DWORD);
Leo van den Berg39bcf9d2002-03-19 02:14:34 +00003631BOOL WINAPI TransparentBlt(HDC,int,int,int,int,HDC,int,int,int,int,UINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003632BOOL WINAPI UnrealizeObject(HGDIOBJ);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003633BOOL WINAPI UpdateColors(HDC);
Hans Leidekkerfeef8952004-12-27 17:23:17 +00003634BOOL WINAPI UpdateICMRegKeyA(DWORD,LPSTR,LPSTR,UINT);
3635BOOL WINAPI UpdateICMRegKeyW(DWORD,LPWSTR,LPWSTR,UINT);
3636#define UpdateICMRegKey WINELIB_NAME_AW(UpdateICMRegKey)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003637BOOL WINAPI WidenPath(HDC);
Peter Ganten87d95b71999-09-19 14:17:14 +00003638BOOL WINAPI PolyTextOutA(HDC,PPOLYTEXTA,INT);
3639BOOL WINAPI PolyTextOutW(HDC,PPOLYTEXTW,INT);
3640#define PolyTextOut WINELIB_NAME_AW(PolyTextOut)
Veksler Michael1346a3c1998-12-15 11:15:35 +00003641
Alexandre Julliard85844e52002-06-10 02:28:42 +00003642/* These defines are used by wglSwapLayerBuffers */
3643#define WGL_SWAP_MAIN_PLANE (1 << 0)
3644#define WGL_SWAP_OVERLAY1 (1 << 1)
3645#define WGL_SWAP_OVERLAY2 (1 << 2)
3646#define WGL_SWAP_OVERLAY3 (1 << 3)
3647#define WGL_SWAP_OVERLAY4 (1 << 4)
3648#define WGL_SWAP_OVERLAY5 (1 << 5)
3649#define WGL_SWAP_OVERLAY6 (1 << 6)
3650#define WGL_SWAP_OVERLAY7 (1 << 7)
3651#define WGL_SWAP_OVERLAY8 (1 << 8)
3652#define WGL_SWAP_OVERLAY9 (1 << 9)
3653#define WGL_SWAP_OVERLAY10 (1 << 10)
3654#define WGL_SWAP_OVERLAY11 (1 << 11)
3655#define WGL_SWAP_OVERLAY12 (1 << 12)
3656#define WGL_SWAP_OVERLAY13 (1 << 13)
3657#define WGL_SWAP_OVERLAY14 (1 << 14)
3658#define WGL_SWAP_OVERLAY15 (1 << 15)
3659#define WGL_SWAP_UNDERLAY1 (1 << 16)
3660#define WGL_SWAP_UNDERLAY2 (1 << 17)
3661#define WGL_SWAP_UNDERLAY3 (1 << 18)
3662#define WGL_SWAP_UNDERLAY4 (1 << 19)
3663#define WGL_SWAP_UNDERLAY5 (1 << 20)
3664#define WGL_SWAP_UNDERLAY6 (1 << 21)
3665#define WGL_SWAP_UNDERLAY7 (1 << 22)
3666#define WGL_SWAP_UNDERLAY8 (1 << 23)
3667#define WGL_SWAP_UNDERLAY9 (1 << 24)
3668#define WGL_SWAP_UNDERLAY10 (1 << 25)
3669#define WGL_SWAP_UNDERLAY11 (1 << 26)
3670#define WGL_SWAP_UNDERLAY12 (1 << 27)
3671#define WGL_SWAP_UNDERLAY13 (1 << 28)
3672#define WGL_SWAP_UNDERLAY14 (1 << 29)
3673#define WGL_SWAP_UNDERLAY15 (1 << 30)
3674
Aric Cyrd0713d22005-12-03 18:01:51 +01003675/* WGL prototypes */
3676HGLRC WINAPI wglCreateContext(HDC);
3677HGLRC WINAPI wglCreateLayerContext(HDC,INT);
3678BOOL WINAPI wglCopyContext(HGLRC,HGLRC,UINT);
3679BOOL WINAPI wglDeleteContext(HGLRC);
3680BOOL WINAPI wglDescribeLayerPlane(HDC,INT,INT,UINT,LPLAYERPLANEDESCRIPTOR);
3681HGLRC WINAPI wglGetCurrentContext(void);
3682HDC WINAPI wglGetCurrentDC(void);
3683INT WINAPI wglGetLayerPaletteEntries(HDC,INT,INT,INT,const COLORREF *);
3684PROC WINAPI wglGetProcAddress(LPCSTR);
3685BOOL WINAPI wglMakeCurrent(HDC,HGLRC);
3686BOOL WINAPI wglRealizeLayerPalette(HDC,INT,BOOL);
3687INT WINAPI wglSetLayerPaletteEntries(HDC,INT,INT,INT,const COLORREF *);
3688BOOL WINAPI wglShareLists(HGLRC,HGLRC);
3689BOOL WINAPI wglSwapLayerBuffers(HDC,UINT);
3690BOOL WINAPI wglUseFontBitmaps(HDC,DWORD,DWORD,DWORD);
3691BOOL WINAPI wglUseFontOutlines(HDC,DWORD,DWORD,DWORD,FLOAT,FLOAT,INT,LPGLYPHMETRICSFLOAT);
3692
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +00003693#ifdef __cplusplus
3694}
3695#endif
3696
Francois Gouget6371e832000-10-13 23:12:19 +00003697#endif /* !NOGDI */
3698#endif /* _WINGDI_ */