blob: 97128ea939390f6fa7e87d7b05bbf2c7486d30e3 [file] [log] [blame]
Francois Gouget6371e832000-10-13 23:12:19 +00001#ifndef _WINGDI_
2#define _WINGDI_
3#ifndef NOGDI
Veksler Michael1346a3c1998-12-15 11:15:35 +00004
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +00005#ifdef __cplusplus
6extern "C" {
7#endif
8
Paul Quinn89b21b41999-03-14 13:47:00 +00009
Jim Aston10141fe1999-04-25 12:31:20 +000010#include "pshpack1.h"
Veksler Michael1346a3c1998-12-15 11:15:35 +000011
Paul Quinn1beaae51998-12-15 15:38:36 +000012typedef struct _ABCFLOAT {
13 FLOAT abcfA;
14 FLOAT abcfB;
15 FLOAT abcfC;
16} ABCFLOAT, *PABCFLOAT, *LPABCFLOAT;
17
Huw D M Daviesa9f55c41999-05-08 12:45:18 +000018#define FONTMAPPER_MAX 10
Veksler Michael1346a3c1998-12-15 11:15:35 +000019
20typedef struct
21{
22 WORD wFirst;
23 WORD wSecond;
Alexandre Julliarda3960291999-02-26 11:11:13 +000024 INT iKernAmount;
25} KERNINGPAIR, *LPKERNINGPAIR;
Veksler Michael1346a3c1998-12-15 11:15:35 +000026
Veksler Michael1346a3c1998-12-15 11:15:35 +000027typedef struct tagPIXELFORMATDESCRIPTOR {
28 WORD nSize;
29 WORD nVersion;
30 DWORD dwFlags;
31 BYTE iPixelType;
32 BYTE cColorBits;
33 BYTE cRedBits;
34 BYTE cRedShift;
35 BYTE cGreenBits;
36 BYTE cGreenShift;
37 BYTE cBlueBits;
38 BYTE cBlueShift;
39 BYTE cAlphaBits;
40 BYTE cAlphaShift;
41 BYTE cAccumBits;
42 BYTE cAccumRedBits;
43 BYTE cAccumGreenBits;
44 BYTE cAccumBlueBits;
45 BYTE cAccumAlphaBits;
46 BYTE cDepthBits;
47 BYTE cStencilBits;
48 BYTE cAuxBuffers;
49 BYTE iLayerType;
50 BYTE bReserved;
51 DWORD dwLayerMask;
52 DWORD dwVisibleMask;
53 DWORD dwDamageMask;
Francois Gouget6c97e452000-11-10 22:33:45 +000054} PIXELFORMATDESCRIPTOR, *PPIXELFORMATDESCRIPTOR, *LPPIXELFORMATDESCRIPTOR;
Veksler Michael1346a3c1998-12-15 11:15:35 +000055
Huw D M Daviesa9f55c41999-05-08 12:45:18 +000056#define PFD_TYPE_RGBA 0
57#define PFD_TYPE_COLORINDEX 1
58
59#define PFD_MAIN_PLANE 0
60#define PFD_OVERLAY_PLANE 1
61#define PFD_UNDERLAY_PLANE (-1)
62
63#define PFD_DOUBLEBUFFER 0x00000001
64#define PFD_STEREO 0x00000002
65#define PFD_DRAW_TO_WINDOW 0x00000004
66#define PFD_DRAW_TO_BITMAP 0x00000008
67#define PFD_SUPPORT_GDI 0x00000010
68#define PFD_SUPPORT_OPENGL 0x00000020
69#define PFD_GENERIC_FORMAT 0x00000040
70#define PFD_NEED_PALETTE 0x00000080
71#define PFD_NEED_SYSTEM_PALETTE 0x00000100
72#define PFD_SWAP_EXCHANGE 0x00000200
73#define PFD_SWAP_COPY 0x00000400
74#define PFD_SWAP_LAYER_BUFFERS 0x00000800
75#define PFD_GENERIC_ACCELERATED 0x00001000
76
77#define PFD_DEPTH_DONTCARE 0x20000000
78#define PFD_DOUBLEBUFFER_DONTCARE 0x40000000
79#define PFD_STEREO_DONTCARE 0x80000000
80
Paul Quinn1beaae51998-12-15 15:38:36 +000081typedef struct tagCOLORADJUSTMENT
82{
83 WORD caSize;
84 WORD caFlags;
85 WORD caIlluminantIndex;
86 WORD caRedGamma;
87 WORD caGreenGamma;
88 WORD caBlueGamma;
89 WORD caReferenceBlack;
90 WORD caReferenceWhite;
91 SHORT caContrast;
92 SHORT caBrightness;
93 SHORT caColorfulness;
94 SHORT caRedGreenTint;
95} COLORADJUSTMENT, *PCOLORADJUSTMENT, *LPCOLORADJUSTMENT;
Brad Pepers0bdff361999-02-09 15:37:16 +000096
Huw D M Daviesa9f55c41999-05-08 12:45:18 +000097#define CA_NEGATIVE 0x0001
98#define CA_LOG_FILTER 0x0002
99
100#define ILLUMINANT_DEVICE_DEFAULT 0
101#define ILLUMINANT_A 1
102#define ILLUMINANT_B 2
103#define ILLUMINANT_C 3
104#define ILLUMINANT_D50 4
105#define ILLUMINANT_D55 5
106#define ILLUMINANT_D65 6
107#define ILLUMINANT_D75 7
108#define ILLUMINANT_F2 8
109#define ILLUMINANT_MAX_INDEX ILLUMINANT_F2
110
111#define ILLUMINANT_TUNGSTEN ILLUMINANT_A
112#define ILLUMINANT_DAYLIGHT ILLUMINANT_C
113#define ILLUMINANT_FLUORESCENT ILLUMINANT_F2
114#define ILLUMINANT_NTSC ILLUMINANT_C
115
116#define RGB_GAMMA_MIN (WORD)02500
117#define RGB_GAMMA_MAX (WORD)65000
118
119#define REFERENCE_WHITE_MIN (WORD)6000
120#define REFERENCE_WHITE_MAX (WORD)10000
121#define REFERENCE_BLACK_MIN (WORD)0
122#define REFERENCE_BLACK_MAX (WORD)4000
123
124#define COLOR_ADJ_MIN ((SHORT)-100)
125#define COLOR_ADJ_MAX (SHORT) 100
126
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +0000127typedef LONG FXPT16DOT16, *LPFXPT16DOT16;
128typedef LONG FXPT2DOT30, *LPFXPT2DOT30;
129typedef LONG LCSCSTYPE;
130typedef LONG LCSGAMUTMATCH;
131
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000132#define LCS_CALIBRATED_RGB 0x00000000L
133#define LCS_DEVICE_RGB 0x00000001L
134#define LCS_DEVICE_CMYK 0x00000002L
135
136#define LCS_GM_BUSINESS 0x00000001L
137#define LCS_GM_GRAPHICS 0x00000002L
138#define LCS_GM_IMAGES 0x00000004L
139
140#define CM_OUT_OF_GAMUT 255
141#define CM_IN_GAMUT 0
142
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +0000143typedef struct tagCIEXYZ
144{
145 FXPT2DOT30 ciexyzX;
146 FXPT2DOT30 ciexyzY;
147 FXPT2DOT30 ciexyzZ;
148} CIEXYZ, *LPCIEXYZ;
149
150typedef struct tagCIEXYZTRIPLE
151{
152 CIEXYZ ciexyzRed;
153 CIEXYZ ciexyzGreen;
154 CIEXYZ ciexyzBlue;
155} CIEXYZTRIPLE, *LPCIEXYZTRIPLE;
156
157typedef struct tagLOGCOLORSPACEA
158{
159 DWORD lcsSignature;
160 DWORD lcsVersion;
161 DWORD lcsSize;
162 LCSCSTYPE lcsCSType;
163 LCSGAMUTMATCH lcsIntent;
164 CIEXYZTRIPLE lcsEndpoints;
165 DWORD lcsGammaRed;
166 DWORD lcsGammaGreen;
167 DWORD lcsGammaBlue;
Francois Gouget6371e832000-10-13 23:12:19 +0000168 CHAR lcsFilename[MAX_PATH];
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +0000169} LOGCOLORSPACEA, *LPLOGCOLORSPACEA;
170
171 typedef struct tagLOGCOLORSPACEW
172{
173 DWORD lcsSignature;
174 DWORD lcsVersion;
175 DWORD lcsSize;
176 LCSCSTYPE lcsCSType;
177 LCSGAMUTMATCH lcsIntent;
178 CIEXYZTRIPLE lcsEndpoints;
179 DWORD lcsGammaRed;
180 DWORD lcsGammaGreen;
181 DWORD lcsGammaBlue;
Francois Gouget6371e832000-10-13 23:12:19 +0000182 WCHAR lcsFilename[MAX_PATH];
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +0000183} LOGCOLORSPACEW, *LPLOGCOLORSPACEW;
184
185DECL_WINELIB_TYPE_AW(LPLOGCOLORSPACE)
186DECL_WINELIB_TYPE_AW(LOGCOLORSPACE)
187
Brad Pepers0bdff361999-02-09 15:37:16 +0000188#define DC_FIELDS 1
189#define DC_PAPERS 2
190#define DC_PAPERSIZE 3
191#define DC_MINEXTENT 4
192#define DC_MAXEXTENT 5
193#define DC_BINS 6
194#define DC_DUPLEX 7
195#define DC_SIZE 8
196#define DC_EXTRA 9
197#define DC_VERSION 10
198#define DC_DRIVER 11
199#define DC_BINNAMES 12
200#define DC_ENUMRESOLUTIONS 13
201#define DC_FILEDEPENDENCIES 14
202#define DC_TRUETYPE 15
203#define DC_PAPERNAMES 16
204#define DC_ORIENTATION 17
205#define DC_COPIES 18
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +0000206#define DC_BINADJUST 19
207#define DC_EMF_COMPLIANT 20
208#define DC_DATATYPE_PRODUCED 21
209#define DC_COLLATE 22
210#define DC_MANUFACTURER 23
211#define DC_MODEL 24
Huw D M Davies4e877161999-09-03 16:43:56 +0000212#define DC_PERSONALITY 25
213#define DC_PRINTRATE 26
214#define DC_PRINTRATEUNIT 27
215#define DC_PRINTERMEM 28
216#define DC_MEDIAREADY 29
217#define DC_STAPLE 30
218#define DC_PRINTRATEPPM 31
219#define DC_COLORDEVICE 32
220#define DC_NUP 33
Brad Pepers0bdff361999-02-09 15:37:16 +0000221
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000222#define DCTT_BITMAP 0x00000001L
223#define DCTT_DOWNLOAD 0x00000002L
224#define DCTT_SUBDEV 0x00000004L
225#define DCTT_DOWNLOAD_OUTLINE 0x00000008L
226
227#define DCBA_FACEUPNONE 0x0000
228#define DCBA_FACEUPCENTER 0x0001
229#define DCBA_FACEUPLEFT 0x0002
230#define DCBA_FACEUPRIGHT 0x0003
231#define DCBA_FACEDOWNNONE 0x0100
232#define DCBA_FACEDOWNCENTER 0x0101
233#define DCBA_FACEDOWNLEFT 0x0102
234#define DCBA_FACEDOWNRIGHT 0x0103
235
Huw D M Davies4e877161999-09-03 16:43:56 +0000236#define PRINTRATEUNIT_PPM 1
237#define PRINTRATEUNIT_CPS 2
238#define PRINTRATEUNIT_LPM 3
239#define PRINTRATEUNIT_IPM 4
240
Brad Pepers0bdff361999-02-09 15:37:16 +0000241/* Flag returned from Escape QUERYDIBSUPPORT */
242#define QDI_SETDIBITS 1
243#define QDI_GETDIBITS 2
244#define QDI_DIBTOSCREEN 4
245#define QDI_STRETCHDIB 8
246
247
Brad Pepers0bdff361999-02-09 15:37:16 +0000248/* GDI Escape commands */
249#define NEWFRAME 1
250#define ABORTDOC 2
251#define NEXTBAND 3
252#define SETCOLORTABLE 4
253#define GETCOLORTABLE 5
254#define FLUSHOUTPUT 6
255#define DRAFTMODE 7
256#define QUERYESCSUPPORT 8
257#define SETABORTPROC 9
258#define STARTDOC 10
259#define ENDDOC 11
260#define GETPHYSPAGESIZE 12
261#define GETPRINTINGOFFSET 13
262#define GETSCALINGFACTOR 14
263#define MFCOMMENT 15
264#define GETPENWIDTH 16
265#define SETCOPYCOUNT 17
266#define SELECTPAPERSOURCE 18
267#define DEVICEDATA 19
268#define PASSTHROUGH 19
269#define GETTECHNOLGY 20
270#define GETTECHNOLOGY 20 /* yes, both of them */
271#define SETLINECAP 21
272#define SETLINEJOIN 22
273#define SETMITERLIMIT 23
274#define BANDINFO 24
275#define DRAWPATTERNRECT 25
276#define GETVECTORPENSIZE 26
277#define GETVECTORBRUSHSIZE 27
278#define ENABLEDUPLEX 28
279#define GETSETPAPERBINS 29
280#define GETSETPRINTORIENT 30
281#define ENUMPAPERBINS 31
282#define SETDIBSCALING 32
283#define EPSPRINTING 33
284#define ENUMPAPERMETRICS 34
285#define GETSETPAPERMETRICS 35
286#define POSTSCRIPT_DATA 37
287#define POSTSCRIPT_IGNORE 38
288#define MOUSETRAILS 39
289#define GETDEVICEUNITS 42
290
Jim Aston10141fe1999-04-25 12:31:20 +0000291#define DESKTOPVERTRES 117
292#define DESKTOPHORZRES 118
293
Brad Pepers0bdff361999-02-09 15:37:16 +0000294#define GETEXTENDEDTEXTMETRICS 256
295#define GETEXTENTTABLE 257
296#define GETPAIRKERNTABLE 258
297#define GETTRACKKERNTABLE 259
298#define EXTTEXTOUT 512
299#define GETFACENAME 513
300#define DOWNLOADFACE 514
301#define ENABLERELATIVEWIDTHS 768
302#define ENABLEPAIRKERNING 769
303#define SETKERNTRACK 770
304#define SETALLJUSTVALUES 771
305#define SETCHARSET 772
306
307#define STRETCHBLT 2048
308#define GETSETSCREENPARAMS 3072
309#define QUERYDIBSUPPORT 3073
310#define BEGIN_PATH 4096
311#define CLIP_TO_PATH 4097
312#define END_PATH 4098
313#define EXT_DEVICE_CAPS 4099
314#define RESTORE_CTM 4100
315#define SAVE_CTM 4101
316#define SET_ARC_DIRECTION 4102
317#define SET_BACKGROUND_COLOR 4103
318#define SET_POLY_MODE 4104
319#define SET_SCREEN_ANGLE 4105
320#define SET_SPREAD 4106
321#define TRANSFORM_CTM 4107
322#define SET_CLIP_BOX 4108
323#define SET_BOUNDS 4109
324#define SET_MIRROR_MODE 4110
325#define OPENCHANNEL 4110
326#define DOWNLOADHEADER 4111
327#define CLOSECHANNEL 4112
328#define POSTSCRIPT_PASSTHROUGH 4115
329#define ENCAPSULATED_POSTSCRIPT 4116
330
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000331#define QDI_SETDIBITS 1
332#define QDI_GETDIBITS 2
333#define QDI_DIBTOSCREEN 4
334#define QDI_STRETCHDIB 8
335
Brad Pepers0bdff361999-02-09 15:37:16 +0000336/* Spooler Error Codes */
337#define SP_NOTREPORTED 0x4000
338#define SP_ERROR (-1)
339#define SP_APPABORT (-2)
340#define SP_USERABORT (-3)
341#define SP_OUTOFDISK (-4)
342#define SP_OUTOFMEMORY (-5)
343
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000344#define PR_JOBSTATUS 0
Brad Pepers0bdff361999-02-09 15:37:16 +0000345
Veksler Michael1346a3c1998-12-15 11:15:35 +0000346 /* Raster operations */
347
348#define R2_BLACK 1
349#define R2_NOTMERGEPEN 2
350#define R2_MASKNOTPEN 3
351#define R2_NOTCOPYPEN 4
352#define R2_MASKPENNOT 5
353#define R2_NOT 6
354#define R2_XORPEN 7
355#define R2_NOTMASKPEN 8
356#define R2_MASKPEN 9
357#define R2_NOTXORPEN 10
358#define R2_NOP 11
359#define R2_MERGENOTPEN 12
360#define R2_COPYPEN 13
361#define R2_MERGEPENNOT 14
362#define R2_MERGEPEN 15
363#define R2_WHITE 16
364
365#define SRCCOPY 0xcc0020
366#define SRCPAINT 0xee0086
367#define SRCAND 0x8800c6
368#define SRCINVERT 0x660046
369#define SRCERASE 0x440328
370#define NOTSRCCOPY 0x330008
371#define NOTSRCERASE 0x1100a6
372#define MERGECOPY 0xc000ca
373#define MERGEPAINT 0xbb0226
374#define PATCOPY 0xf00021
375#define PATPAINT 0xfb0a09
376#define PATINVERT 0x5a0049
377#define DSTINVERT 0x550009
378#define BLACKNESS 0x000042
379#define WHITENESS 0xff0062
380
381 /* StretchBlt() modes */
382#define BLACKONWHITE 1
383#define WHITEONBLACK 2
384#define COLORONCOLOR 3
Huw D M Davies7603dea1999-04-25 09:24:23 +0000385#define HALFTONE 4
Jim Aston10141fe1999-04-25 12:31:20 +0000386#define MAXSTRETCHBLTMODE 4
Veksler Michael1346a3c1998-12-15 11:15:35 +0000387
388#define STRETCH_ANDSCANS BLACKONWHITE
389#define STRETCH_ORSCANS WHITEONBLACK
390#define STRETCH_DELETESCANS COLORONCOLOR
Huw D M Davies7603dea1999-04-25 09:24:23 +0000391#define STRETCH_HALFTONE HALFTONE
Veksler Michael1346a3c1998-12-15 11:15:35 +0000392
393 /* Colors */
394
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +0000395typedef DWORD COLORREF, *LPCOLORREF;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000396
397#define RGB(r,g,b) ((COLORREF)((r) | ((g) << 8) | ((b) << 16)))
398#define PALETTERGB(r,g,b) (0x02000000 | RGB(r,g,b))
399#define PALETTEINDEX(i) ((COLORREF)(0x01000000 | (WORD)(i)))
400
401#define GetRValue(rgb) ((rgb) & 0xff)
402#define GetGValue(rgb) (((rgb) >> 8) & 0xff)
403#define GetBValue(rgb) (((rgb) >> 16) & 0xff)
404
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000405#define GetKValue(cmyk) ((BYTE) (cmyk) )
406#define GetYValue(cmyk) ((BYTE) ((cymk) >> 8))
407#define GetMValue(cmyk) ((BYTE) ((cymk) >> 16))
408#define GetCValue(cmyk) ((BYTE) ((cymk) >> 24))
Veksler Michael1346a3c1998-12-15 11:15:35 +0000409
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000410#define CMYK(c,m,y,k) ((COLOREF)((((BYTE)(k)|((WORD)((BYTE)(y))<<8))|(((DWORD)(BYTE)(m))<<16))|(((DWORD)(BYTE)(c))<<24)))
411
Veksler Michael1346a3c1998-12-15 11:15:35 +0000412
413#define ICM_OFF 1
414#define ICM_ON 2
415#define ICM_QUERY 3
416
417 /* Bounds Accumulation APIs */
418#define DCB_RESET 0x0001
419#define DCB_ACCUMULATE 0x0002
420#define DCB_DIRTY DCB_ACCUMULATE
421#define DCB_SET (DCB_RESET | DCB_ACCUMULATE)
422#define DCB_ENABLE 0x0004
423#define DCB_DISABLE 0x0008
424
Veksler Michael1346a3c1998-12-15 11:15:35 +0000425typedef struct
426{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000427 LONG paXCount;
428 LONG paYCount;
429 LONG paXExt;
430 LONG paYExt;
431 BYTE paRGBs;
Francois Gouget6c97e452000-11-10 22:33:45 +0000432} PELARRAY, *PPELARRAY, *LPPELARRAY;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000433
434 /* Bitmaps */
Veksler Michael1346a3c1998-12-15 11:15:35 +0000435
436typedef struct
437{
Alexandre Julliarda3960291999-02-26 11:11:13 +0000438 INT bmType;
439 INT bmWidth;
440 INT bmHeight;
441 INT bmWidthBytes;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000442 WORD bmPlanes;
443 WORD bmBitsPixel;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000444 LPVOID bmBits;
Francois Gouget6c97e452000-11-10 22:33:45 +0000445} BITMAP, *PBITMAP, *LPBITMAP;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000446
Veksler Michael1346a3c1998-12-15 11:15:35 +0000447
448 /* Brushes */
449
450typedef struct
451{
Alexandre Julliarda3960291999-02-26 11:11:13 +0000452 UINT lbStyle;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000453 COLORREF lbColor;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000454 INT lbHatch;
Francois Gouget6c97e452000-11-10 22:33:45 +0000455} LOGBRUSH, *PLOGBRUSH, *LPLOGBRUSH;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000456
Francois Gouget6c97e452000-11-10 22:33:45 +0000457typedef LOGBRUSH PATTERN, *PPATTERN, *LPPATTERN;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000458
Veksler Michael1346a3c1998-12-15 11:15:35 +0000459
460 /* Brush styles */
461#define BS_SOLID 0
462#define BS_NULL 1
463#define BS_HOLLOW 1
464#define BS_HATCHED 2
465#define BS_PATTERN 3
466#define BS_INDEXED 4
467#define BS_DIBPATTERN 5
468#define BS_DIBPATTERNPT 6
469#define BS_PATTERN8X8 7
470#define BS_DIBPATTERN8X8 8
471#define BS_MONOPATTERN 9
472
473 /* Hatch styles */
474#define HS_HORIZONTAL 0
475#define HS_VERTICAL 1
476#define HS_FDIAGONAL 2
477#define HS_BDIAGONAL 3
478#define HS_CROSS 4
479#define HS_DIAGCROSS 5
480
481 /* Fonts */
482
483#define LF_FACESIZE 32
484#define LF_FULLFACESIZE 64
485
486#define RASTER_FONTTYPE 0x0001
487#define DEVICE_FONTTYPE 0x0002
488#define TRUETYPE_FONTTYPE 0x0004
489
490typedef struct
491{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000492 LONG lfHeight;
493 LONG lfWidth;
494 LONG lfEscapement;
495 LONG lfOrientation;
496 LONG lfWeight;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000497 BYTE lfItalic;
498 BYTE lfUnderline;
499 BYTE lfStrikeOut;
500 BYTE lfCharSet;
501 BYTE lfOutPrecision;
502 BYTE lfClipPrecision;
503 BYTE lfQuality;
504 BYTE lfPitchAndFamily;
505 CHAR lfFaceName[LF_FACESIZE];
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +0000506} LOGFONTA, *PLOGFONTA, *LPLOGFONTA;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000507
508typedef struct
509{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000510 LONG lfHeight;
511 LONG lfWidth;
512 LONG lfEscapement;
513 LONG lfOrientation;
514 LONG lfWeight;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000515 BYTE lfItalic;
516 BYTE lfUnderline;
517 BYTE lfStrikeOut;
518 BYTE lfCharSet;
519 BYTE lfOutPrecision;
520 BYTE lfClipPrecision;
521 BYTE lfQuality;
522 BYTE lfPitchAndFamily;
523 WCHAR lfFaceName[LF_FACESIZE];
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +0000524} LOGFONTW, *PLOGFONTW, *LPLOGFONTW;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000525
526DECL_WINELIB_TYPE_AW(LOGFONT)
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +0000527DECL_WINELIB_TYPE_AW(PLOGFONT)
Veksler Michael1346a3c1998-12-15 11:15:35 +0000528DECL_WINELIB_TYPE_AW(LPLOGFONT)
529
530typedef struct
531{
Alexandre Julliarda3960291999-02-26 11:11:13 +0000532 LOGFONTA elfLogFont;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000533 BYTE elfFullName[LF_FULLFACESIZE];
534 BYTE elfStyle[LF_FACESIZE];
Alexandre Julliarda3960291999-02-26 11:11:13 +0000535} ENUMLOGFONTA, *LPENUMLOGFONTA;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000536
537typedef struct
538{
Alexandre Julliarda3960291999-02-26 11:11:13 +0000539 LOGFONTW elfLogFont;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000540 WCHAR elfFullName[LF_FULLFACESIZE];
541 WCHAR elfStyle[LF_FACESIZE];
Alexandre Julliarda3960291999-02-26 11:11:13 +0000542} ENUMLOGFONTW, *LPENUMLOGFONTW;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000543
Francois Gouget6c97e452000-11-10 22:33:45 +0000544DECL_WINELIB_TYPE_AW(ENUMLOGFONT)
545DECL_WINELIB_TYPE_AW(LPENUMLOGFONT)
546
Veksler Michael1346a3c1998-12-15 11:15:35 +0000547typedef struct
548{
Alexandre Julliarda3960291999-02-26 11:11:13 +0000549 LOGFONTA elfLogFont;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000550 BYTE elfFullName[LF_FULLFACESIZE];
551 BYTE elfStyle[LF_FACESIZE];
552 BYTE elfScript[LF_FACESIZE];
Alexandre Julliarda3960291999-02-26 11:11:13 +0000553} ENUMLOGFONTEXA,*LPENUMLOGFONTEXA;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000554
555typedef struct
556{
Alexandre Julliarda3960291999-02-26 11:11:13 +0000557 LOGFONTW elfLogFont;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000558 WCHAR elfFullName[LF_FULLFACESIZE];
559 WCHAR elfStyle[LF_FACESIZE];
560 WCHAR elfScript[LF_FACESIZE];
Alexandre Julliarda3960291999-02-26 11:11:13 +0000561} ENUMLOGFONTEXW,*LPENUMLOGFONTEXW;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000562
Francois Gouget6c97e452000-11-10 22:33:45 +0000563DECL_WINELIB_TYPE_AW(ENUMLOGFONTEX)
Veksler Michael1346a3c1998-12-15 11:15:35 +0000564DECL_WINELIB_TYPE_AW(LPENUMLOGFONTEX)
565
Douglas Ridgway4f7d9ed1998-12-18 17:38:39 +0000566/*
567 * The FONTSIGNATURE tells which Unicode ranges and which code pages
568 * have glyphs in a font.
569 *
570 * fsUsb 128-bit bitmap. The most significant bits are 10 (magic number).
571 * The remaining 126 bits map the Unicode ISO 10646 subranges
572 * for which the font provides glyphs.
573 *
574 * fsCsb 64-bit bitmap. The low 32 bits map the Windows codepages for
575 * which the font provides glyphs. The high 32 bits are for
576 * non Windows codepages.
577 */
Veksler Michael1346a3c1998-12-15 11:15:35 +0000578typedef struct
579{
580 DWORD fsUsb[4];
581 DWORD fsCsb[2];
Francois Gouget6c97e452000-11-10 22:33:45 +0000582} FONTSIGNATURE, *PFONTSIGNATURE, *LPFONTSIGNATURE;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000583
584typedef struct
585{
Alexandre Julliarda3960291999-02-26 11:11:13 +0000586 UINT ciCharset; /* character set */
587 UINT ciACP; /* ANSI code page */
Veksler Michael1346a3c1998-12-15 11:15:35 +0000588 FONTSIGNATURE fs;
Francois Gouget6c97e452000-11-10 22:33:45 +0000589} CHARSETINFO, *PCHARSETINFO, *LPCHARSETINFO;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000590
Douglas Ridgway4f7d9ed1998-12-18 17:38:39 +0000591/* Flags for TranslateCharsetInfo */
Douglas Ridgwayab9e8bc1999-01-01 18:41:22 +0000592#define TCI_SRCCHARSET 1
593#define TCI_SRCCODEPAGE 2
594#define TCI_SRCFONTSIG 3
Douglas Ridgway4f7d9ed1998-12-18 17:38:39 +0000595
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000596typedef struct
597{
598 DWORD lsUsb[4];
599 DWORD lsCsbDefault[2];
600 DWORD lsCsbSupported[2];
Francois Gouget6c97e452000-11-10 22:33:45 +0000601} LOCALESIGNATURE, *PLOCALESIGNATUR, *LPLOCALESIGNATUREE;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000602
603
Veksler Michael1346a3c1998-12-15 11:15:35 +0000604/* Flags for ModifyWorldTransform */
605#define MWT_IDENTITY 1
606#define MWT_LEFTMULTIPLY 2
607#define MWT_RIGHTMULTIPLY 3
Patrik Stridvall564d3802000-10-22 23:55:15 +0000608#define MWT_MIN MWT_IDENTITY
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000609#define MWT_MAX MWT_RIGHTMULTIPLY
Veksler Michael1346a3c1998-12-15 11:15:35 +0000610
Alexandre Julliard8da12c41999-01-17 16:55:11 +0000611/* Object Definitions for EnumObjects() */
612#define OBJ_PEN 1
613#define OBJ_BRUSH 2
614#define OBJ_DC 3
615#define OBJ_METADC 4
616#define OBJ_PAL 5
617#define OBJ_FONT 6
618#define OBJ_BITMAP 7
619#define OBJ_REGION 8
620#define OBJ_METAFILE 9
621#define OBJ_MEMDC 10
622#define OBJ_EXTPEN 11
623#define OBJ_ENHMETADC 12
624#define OBJ_ENHMETAFILE 13
625
Veksler Michael1346a3c1998-12-15 11:15:35 +0000626typedef struct
627{
628 FLOAT eM11;
629 FLOAT eM12;
630 FLOAT eM21;
631 FLOAT eM22;
632 FLOAT eDx;
633 FLOAT eDy;
Francois Gouget6c97e452000-11-10 22:33:45 +0000634} XFORM, *PXFORM, *LPXFORM;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000635
Veksler Michael1346a3c1998-12-15 11:15:35 +0000636 /* lfWeight values */
637#define FW_DONTCARE 0
638#define FW_THIN 100
639#define FW_EXTRALIGHT 200
640#define FW_ULTRALIGHT 200
641#define FW_LIGHT 300
642#define FW_NORMAL 400
643#define FW_REGULAR 400
644#define FW_MEDIUM 500
645#define FW_SEMIBOLD 600
646#define FW_DEMIBOLD 600
647#define FW_BOLD 700
648#define FW_EXTRABOLD 800
649#define FW_ULTRABOLD 800
650#define FW_HEAVY 900
651#define FW_BLACK 900
652
653 /* lfCharSet values */
Douglas Ridgwayab9e8bc1999-01-01 18:41:22 +0000654#define ANSI_CHARSET (BYTE)0 /* CP1252, ansi-0, iso8859-{1,15} */
655#define DEFAULT_CHARSET (BYTE)1
656#define SYMBOL_CHARSET (BYTE)2
657#define SHIFTJIS_CHARSET (BYTE)128 /* CP932 */
658#define HANGEUL_CHARSET (BYTE)129 /* CP949, ksc5601.1987-0 */
659#define HANGUL_CHARSET HANGEUL_CHARSET
660#define GB2312_CHARSET (BYTE)134 /* CP936, gb2312.1980-0 */
661#define CHINESEBIG5_CHARSET (BYTE)136 /* CP950, big5.et-0 */
662#define GREEK_CHARSET (BYTE)161 /* CP1253 */
663#define TURKISH_CHARSET (BYTE)162 /* CP1254, -iso8859-9 */
664#define HEBREW_CHARSET (BYTE)177 /* CP1255, -iso8859-8 */
665#define ARABIC_CHARSET (BYTE)178 /* CP1256, -iso8859-6 */
Nerijus Baliunasc4b8b262000-11-11 00:34:32 +0000666#define BALTIC_CHARSET (BYTE)186 /* CP1257, -iso8859-13 */
Douglas Ridgwayab9e8bc1999-01-01 18:41:22 +0000667#define RUSSIAN_CHARSET (BYTE)204 /* CP1251, -iso8859-5 */
668#define EE_CHARSET (BYTE)238 /* CP1250, -iso8859-2 */
669#define EASTEUROPE_CHARSET EE_CHARSET
670#define THAI_CHARSET (BYTE)222 /* CP874, iso8859-11, tis620 */
671#define JOHAB_CHARSET (BYTE)130 /* korean (johab) CP1361 */
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000672#define MAC_CHARSET (BYTE)77
Douglas Ridgwayab9e8bc1999-01-01 18:41:22 +0000673#define OEM_CHARSET (BYTE)255
Veksler Michael1346a3c1998-12-15 11:15:35 +0000674/* I don't know if the values of *_CHARSET macros are defined in Windows
675 * or if we can choose them as we want. -- srtxg
676 */
Douglas Ridgwayab9e8bc1999-01-01 18:41:22 +0000677#define VISCII_CHARSET (BYTE)240 /* viscii1.1-1 */
678#define TCVN_CHARSET (BYTE)241 /* tcvn-0 */
679#define KOI8_CHARSET (BYTE)242 /* koi8-{r,u,ru} */
680#define ISO3_CHARSET (BYTE)243 /* iso8859-3 */
681#define ISO4_CHARSET (BYTE)244 /* iso8859-4 */
Nerijus Baliunasc4b8b262000-11-11 00:34:32 +0000682#define ISO10_CHARSET (BYTE)245 /* iso8859-10 */
683#define CELTIC_CHARSET (BYTE)246 /* iso8859-14 */
Veksler Michael1346a3c1998-12-15 11:15:35 +0000684
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000685#define FS_LATIN1 0x00000001L
686#define FS_LATIN2 0x00000002L
687#define FS_CYRILLIC 0x00000004L
688#define FS_GREEK 0x00000008L
689#define FS_TURKISH 0x00000010L
690#define FS_HEBREW 0x00000020L
691#define FS_ARABIC 0x00000040L
692#define FS_BALTIC 0x00000080L
693#define FS_VIETNAMESE 0x00000100L
694#define FS_THAI 0x00010000L
695#define FS_JISJAPAN 0x00020000L
696#define FS_CHINESESIMP 0x00040000L
697#define FS_WANSUNG 0x00080000L
698#define FS_CHINESETRAD 0x00100000L
699#define FS_JOHAB 0x00200000L
700#define FS_SYMBOL 0x80000000L
701
Veksler Michael1346a3c1998-12-15 11:15:35 +0000702 /* lfOutPrecision values */
703#define OUT_DEFAULT_PRECIS 0
704#define OUT_STRING_PRECIS 1
705#define OUT_CHARACTER_PRECIS 2
706#define OUT_STROKE_PRECIS 3
707#define OUT_TT_PRECIS 4
708#define OUT_DEVICE_PRECIS 5
709#define OUT_RASTER_PRECIS 6
710#define OUT_TT_ONLY_PRECIS 7
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000711#define OUT_OUTLINE_PRECIS 8
Veksler Michael1346a3c1998-12-15 11:15:35 +0000712
713 /* lfClipPrecision values */
714#define CLIP_DEFAULT_PRECIS 0x00
715#define CLIP_CHARACTER_PRECIS 0x01
716#define CLIP_STROKE_PRECIS 0x02
717#define CLIP_MASK 0x0F
718#define CLIP_LH_ANGLES 0x10
719#define CLIP_TT_ALWAYS 0x20
720#define CLIP_EMBEDDED 0x80
721
722 /* lfQuality values */
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000723#define DEFAULT_QUALITY 0
724#define DRAFT_QUALITY 1
725#define PROOF_QUALITY 2
726#define NONANTIALIASED_QUALITY 3
727#define ANTIALIASED_QUALITY 4
Veksler Michael1346a3c1998-12-15 11:15:35 +0000728
729 /* lfPitchAndFamily pitch values */
730#define DEFAULT_PITCH 0x00
731#define FIXED_PITCH 0x01
732#define VARIABLE_PITCH 0x02
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000733#define MONO_FONT 0x08
734
Veksler Michael1346a3c1998-12-15 11:15:35 +0000735#define FF_DONTCARE 0x00
736#define FF_ROMAN 0x10
737#define FF_SWISS 0x20
738#define FF_MODERN 0x30
739#define FF_SCRIPT 0x40
740#define FF_DECORATIVE 0x50
741
742typedef struct
743{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000744 LONG tmHeight;
745 LONG tmAscent;
746 LONG tmDescent;
747 LONG tmInternalLeading;
748 LONG tmExternalLeading;
749 LONG tmAveCharWidth;
750 LONG tmMaxCharWidth;
751 LONG tmWeight;
752 LONG tmOverhang;
753 LONG tmDigitizedAspectX;
754 LONG tmDigitizedAspectY;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000755 BYTE tmFirstChar;
756 BYTE tmLastChar;
757 BYTE tmDefaultChar;
758 BYTE tmBreakChar;
759 BYTE tmItalic;
760 BYTE tmUnderlined;
761 BYTE tmStruckOut;
762 BYTE tmPitchAndFamily;
763 BYTE tmCharSet;
Matthew Cline4ecb75b2000-02-12 19:26:07 +0000764} TEXTMETRICA, *LPTEXTMETRICA, *PTEXTMETRICA;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000765
766typedef struct
767{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000768 LONG tmHeight;
769 LONG tmAscent;
770 LONG tmDescent;
771 LONG tmInternalLeading;
772 LONG tmExternalLeading;
773 LONG tmAveCharWidth;
774 LONG tmMaxCharWidth;
775 LONG tmWeight;
776 LONG tmOverhang;
777 LONG tmDigitizedAspectX;
778 LONG tmDigitizedAspectY;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000779 WCHAR tmFirstChar;
780 WCHAR tmLastChar;
781 WCHAR tmDefaultChar;
782 WCHAR tmBreakChar;
783 BYTE tmItalic;
784 BYTE tmUnderlined;
785 BYTE tmStruckOut;
786 BYTE tmPitchAndFamily;
787 BYTE tmCharSet;
Matthew Cline4ecb75b2000-02-12 19:26:07 +0000788} TEXTMETRICW, *LPTEXTMETRICW, *PTEXTMETRICW;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000789
790DECL_WINELIB_TYPE_AW(TEXTMETRIC)
Matthew Cline4ecb75b2000-02-12 19:26:07 +0000791DECL_WINELIB_TYPE_AW(PTEXTMETRIC)
Veksler Michael1346a3c1998-12-15 11:15:35 +0000792DECL_WINELIB_TYPE_AW(LPTEXTMETRIC)
793
794
795typedef struct tagPANOSE
796{
797 BYTE bFamilyType;
798 BYTE bSerifStyle;
799 BYTE bWeight;
800 BYTE bProportion;
801 BYTE bContrast;
802 BYTE bStrokeVariation;
803 BYTE bArmStyle;
804 BYTE bLetterform;
805 BYTE bMidline;
806 BYTE bXHeight;
Francois Gouget6c97e452000-11-10 22:33:45 +0000807} PANOSE, *LPPANOSE;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000808
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000809#define PANOSE_COUNT 10
810
811#define PANOSE_FAMILYTYPE_INDEX 0
812#define PAN_SERIFSTYLE_INDEX 1
813#define PAN_WEIGTH_INDEX 2
814#define PAN_PROPORTION_INDEX 3
815#define PAN_CONTRAST_INDEX 4
816#define PAN_STROKEVARIATION_INDEX 5
817#define PAN_ARMSTYLE_INDEX 6
818#define PAN_LETTERFORM_INDEX 7
819#define PAN_MIDLINE_INDEX 8
820#define PAN_XHEIGHT_INDEX 9
821
Huw D M Daviesad1e06e1999-04-24 11:47:26 +0000822#define PAN_CULTURE_LATIN 0
823
824#define PAN_ANY 0
825#define PAN_NO_FIT 1
826
827#define PAN_FAMILY_TEXT_DISPLAY 2
828#define PAN_FAMILY_SCRIPT 3
829#define PAN_FAMILY_DECORATIVE 4
830#define PAN_FAMILY_PICTORIAL 5
831
832#define PAN_SERIF_COVE 2
833#define PAN_SERIF_OBTUSE_COVE 3
834#define PAN_SERIF_SQUARE_COVE 4
835#define PAN_SERIF_OBTUSE_SQUARE_COVE 5
836#define PAN_SERIF_SQUARE 6
837#define PAN_SERIF_THIN 7
838#define PAN_SERIF_BONE 8
839#define PAN_SERIF_EXAGGERATED 9
840#define PAN_SERIF_TRIANGLE 10
841#define PAN_SERIF_NORMAL_SANS 11
842#define PAN_SERIF_OBTUSE_SANS 12
843#define PAN_SERIF_PERP_SANS 13
844#define PAN_SERIF_FLARED 14
845#define PAN_SERIF_ROUNDED 15
846
847#define PAN_WEIGHT_VERY_LIGHT 2
848#define PAN_WEIGHT_LIGHT 3
849#define PAN_WEIGHT_THIN 4
850#define PAN_WEIGHT_BOOK 5
851#define PAN_WEIGHT_MEDIUM 6
852#define PAN_WEIGHT_DEMI 7
853#define PAN_WEIGHT_BOLD 8
854#define PAN_WEIGHT_HEAVY 9
855#define PAN_WEIGHT_BLACK 10
856#define PAN_WEIGHT_NORD 11
857
858#define PAN_PROP_OLD_STYLE 2
859#define PAN_PROP_MODERN 3
860#define PAN_PROP_EVEN_WIDTH 4
861#define PAN_PROP_EXPANDED 5
862#define PAN_PROP_CONDENSED 6
863#define PAN_PROP_VERY_EXPANDED 7
864#define PAN_PROP_VERY_CONDENSED 8
865#define PAN_PROP_MONOSPACED 9
866
867#define PAN_CONTRAST_NONE 2
868#define PAN_CONTRAST_VERY_LOW 3
869#define PAN_CONTRAST_LOW 4
870#define PAN_CONTRAST_MEDIUM_LOW 5
871#define PAN_CONTRAST_MEDIUM 6
872#define PAN_CONTRAST_MEDIUM_HIGH 7
873#define PAN_CONTRAST_HIGH 8
874#define PAN_CONTRAST_VERY_HIGH 9
875
876#define PAN_STROKE_GRADUAL_DIAG 2
877#define PAN_STROKE_GRADUAL_TRAN 3
878#define PAN_STROKE_GRADUAL_VERT 4
879#define PAN_STROKE_GRADUAL_HORZ 5
880#define PAN_STROKE_RAPID_VERT 6
881#define PAN_STROKE_RAPID_HORZ 7
882#define PAN_STROKE_INSTANT_VERT 8
883
884#define PAN_STRAIGHT_ARMS_HORZ 2
885#define PAN_STRAIGHT_ARMS_WEDGE 3
886#define PAN_STRAIGHT_ARMS_VERT 4
887#define PAN_STRAIGHT_ARMS_SINGLE_SERIF 5
888#define PAN_STRAIGHT_ARMS_DOUBLE_SERIF 6
889#define PAN_BENT_ARMS_HORZ 7
890#define PAN_BENT_ARMS_WEDGE 8
891#define PAN_BENT_ARMS_VERT 9
892#define PAN_BENT_ARMS_SINGLE_SERIF 10
893#define PAN_BENT_ARMS_DOUBLE_SERIF 11
894
895#define PAN_LETT_NORMAL_COMPACT 2
896#define PAN_LETT_NORMAL_WEIGHTED 3
897#define PAN_LETT_NORMAL_BOXED 4
898#define PAN_LETT_NORMAL_FLATTENED 5
899#define PAN_LETT_NORMAL_ROUNDED 6
900#define PAN_LETT_NORMAL_OFF_CENTER 7
901#define PAN_LETT_NORMAL_SQUARE 8
902#define PAN_LETT_OBLIQUE_COMPACT 9
903#define PAN_LETT_OBLIQUE_WEIGHTED 10
904#define PAN_LETT_OBLIQUE_BOXED 11
905#define PAN_LETT_OBLIQUE_FLATTENED 12
906#define PAN_LETT_OBLIQUE_ROUNDED 13
907#define PAN_LETT_OBLIQUE_OFF_CENTER 14
908#define PAN_LETT_OBLIQUE_SQUARE 15
909
910#define PAN_MIDLINE_STANDARD_TRIMMED 2
911#define PAN_MIDLINE_STANDARD_POINTED 3
912#define PAN_MIDLINE_STANDARD_SERIFED 4
913#define PAN_MIDLINE_HIGH_TRIMMED 5
914#define PAN_MIDLINE_HIGH_POINTED 6
915#define PAN_MIDLINE_HIGH_SERIFED 7
916#define PAN_MIDLINE_CONSTANT_TRIMMED 8
917#define PAN_MIDLINE_CONSTANT_POINTED 9
918#define PAN_MIDLINE_CONSTANT_SERIFED 10
919#define PAN_MIDLINE_LOW_TRIMMED 11
920#define PAN_MIDLINE_LOW_POINTED 12
921#define PAN_MIDLINE_LOW_SERIFED 13
922
923#define PAN_XHEIGHT_CONSTANT_SMALL 2
924#define PAN_XHEIGHT_CONSTANT_STANDARD 3
925#define PAN_XHEIGHT_CONSTANT_LARGE 4
926#define PAN_XHEIGHT_DUCKING_SMALL 5
927#define PAN_XHEIGHT_DUCKING_STANDARD 6
928#define PAN_XHEIGHT_DUCKING_LARGE 7
929
930#define ELF_VENDOR_SIZE 4
931typedef struct
932{
933 LOGFONTA elfLogFont;
934 BYTE elfFullName[LF_FULLFACESIZE];
935 BYTE elfStyle[LF_FACESIZE];
936 DWORD elfVersion;
937 DWORD elfStyleSize;
938 DWORD elfMatch;
939 DWORD elfReserved;
940 BYTE elfVendorId[ELF_VENDOR_SIZE];
941 DWORD elfCulture;
942 PANOSE elfPanose;
Francois Gouget6c97e452000-11-10 22:33:45 +0000943} EXTLOGFONTA, *PEXTLOGFONTA, *LPEXTLOGFONTA;
Huw D M Daviesad1e06e1999-04-24 11:47:26 +0000944
945typedef struct
946{
947 LOGFONTW elfLogFont;
948 WCHAR elfFullName[LF_FULLFACESIZE];
949 WCHAR elfStyle[LF_FACESIZE];
950 DWORD elfVersion;
951 DWORD elfStyleSize;
952 DWORD elfMatch;
953 DWORD elfReserved;
954 BYTE elfVendorId[ELF_VENDOR_SIZE];
955 DWORD elfCulture;
956 PANOSE elfPanose;
Francois Gouget6c97e452000-11-10 22:33:45 +0000957} EXTLOGFONTW, *PEXTLOGFONTW, *LPEXTLOGFONTW;
Huw D M Daviesad1e06e1999-04-24 11:47:26 +0000958
959DECL_WINELIB_TYPE_AW(EXTLOGFONT)
960DECL_WINELIB_TYPE_AW(PEXTLOGFONT)
Francois Gouget6c97e452000-11-10 22:33:45 +0000961DECL_WINELIB_TYPE_AW(LPEXTLOGFONT)
Veksler Michael1346a3c1998-12-15 11:15:35 +0000962
Huw D M Daviesa9f55c41999-05-08 12:45:18 +0000963#define ELF_VERSION 0
964#define ELF_CULTURE_LATIN 0
965
Alexandre Julliarda3960291999-02-26 11:11:13 +0000966typedef struct _OUTLINETEXTMETRICA
Veksler Michael1346a3c1998-12-15 11:15:35 +0000967{
Alexandre Julliarda3960291999-02-26 11:11:13 +0000968 UINT otmSize;
969 TEXTMETRICA otmTextMetrics;
Huw D M Davies916a1a62001-03-13 23:31:40 +0000970 BYTE otmFiller;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000971 PANOSE otmPanoseNumber;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000972 UINT otmfsSelection;
973 UINT otmfsType;
974 INT otmsCharSlopeRise;
975 INT otmsCharSlopeRun;
976 INT otmItalicAngle;
977 UINT otmEMSquare;
978 INT otmAscent;
979 INT otmDescent;
980 UINT otmLineGap;
981 UINT otmsCapEmHeight;
982 UINT otmsXHeight;
983 RECT otmrcFontBox;
984 INT otmMacAscent;
985 INT otmMacDescent;
986 UINT otmMacLineGap;
987 UINT otmusMinimumPPEM;
988 POINT otmptSubscriptSize;
989 POINT otmptSubscriptOffset;
990 POINT otmptSuperscriptSize;
991 POINT otmptSuperscriptOffset;
992 UINT otmsStrikeoutSize;
993 INT otmsStrikeoutPosition;
994 INT otmsUnderscoreSize;
995 INT otmsUnderscorePosition;
Veksler Michael1346a3c1998-12-15 11:15:35 +0000996 LPSTR otmpFamilyName;
997 LPSTR otmpFaceName;
998 LPSTR otmpStyleName;
999 LPSTR otmpFullName;
Francois Gouget6c97e452000-11-10 22:33:45 +00001000} OUTLINETEXTMETRICA, *POUTLINETEXTMETRICA, *LPOUTLINETEXTMETRICA;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001001
Alexandre Julliarda3960291999-02-26 11:11:13 +00001002typedef struct _OUTLINETEXTMETRICW
Veksler Michael1346a3c1998-12-15 11:15:35 +00001003{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001004 UINT otmSize;
1005 TEXTMETRICW otmTextMetrics;
Huw D M Davies916a1a62001-03-13 23:31:40 +00001006 BYTE otmFiller;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001007 PANOSE otmPanoseNumber;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001008 UINT otmfsSelection;
1009 UINT otmfsType;
1010 INT otmsCharSlopeRise;
1011 INT otmsCharSlopeRun;
1012 INT otmItalicAngle;
1013 UINT otmEMSquare;
1014 INT otmAscent;
1015 INT otmDescent;
1016 UINT otmLineGap;
1017 UINT otmsCapEmHeight;
1018 UINT otmsXHeight;
1019 RECT otmrcFontBox;
1020 INT otmMacAscent;
1021 INT otmMacDescent;
1022 UINT otmMacLineGap;
1023 UINT otmusMinimumPPEM;
1024 POINT otmptSubscriptSize;
1025 POINT otmptSubscriptOffset;
1026 POINT otmptSuperscriptSize;
1027 POINT otmptSuperscriptOffset;
1028 UINT otmsStrikeoutSize;
1029 INT otmsStrikeoutPosition;
1030 INT otmsUnderscoreSize;
1031 INT otmsUnderscorePosition;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001032 LPSTR otmpFamilyName;
1033 LPSTR otmpFaceName;
1034 LPSTR otmpStyleName;
1035 LPSTR otmpFullName;
Francois Gouget6c97e452000-11-10 22:33:45 +00001036} OUTLINETEXTMETRICW, *POUTLINETEXTMETRICW, *LPOUTLINETEXTMETRICW;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001037
Veksler Michael1346a3c1998-12-15 11:15:35 +00001038DECL_WINELIB_TYPE_AW(OUTLINETEXTMETRIC)
Francois Gouget6c97e452000-11-10 22:33:45 +00001039DECL_WINELIB_TYPE_AW(POUTLINETEXTMETRIC)
Veksler Michael1346a3c1998-12-15 11:15:35 +00001040DECL_WINELIB_TYPE_AW(LPOUTLINETEXTMETRIC)
1041
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001042typedef struct
1043{
1044 INT x;
1045 INT y;
1046 UINT n;
1047 LPCSTR lpstr;
1048 UINT uiFlags;
1049 RECT rcl;
1050 INT *pdx;
Francois Gouget6c97e452000-11-10 22:33:45 +00001051} POLYTEXTA, *PPOLYTEXTA, *LPPOLYTEXTA;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001052
1053typedef struct
1054{
1055 INT x;
1056 INT y;
1057 UINT n;
1058 LPCWSTR lpstr;
1059 UINT uiFlags;
1060 RECT rcl;
1061 INT *pdx;
Francois Gouget6c97e452000-11-10 22:33:45 +00001062} POLYTEXTW, *PPOLYTEXTW, *LPPOLYTEXTW;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001063
1064DECL_WINELIB_TYPE_AW(POLYTEXT)
1065DECL_WINELIB_TYPE_AW(PPOLYTEXT)
Francois Gouget6c97e452000-11-10 22:33:45 +00001066DECL_WINELIB_TYPE_AW(LPPOLYTEXT)
Veksler Michael1346a3c1998-12-15 11:15:35 +00001067
1068
1069/* ntmFlags field flags */
1070#define NTM_REGULAR 0x00000040L
1071#define NTM_BOLD 0x00000020L
1072#define NTM_ITALIC 0x00000001L
1073
1074typedef struct
1075{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001076 LONG tmHeight;
1077 LONG tmAscent;
1078 LONG tmDescent;
1079 LONG tmInternalLeading;
1080 LONG tmExternalLeading;
1081 LONG tmAveCharWidth;
1082 LONG tmMaxCharWidth;
1083 LONG tmWeight;
1084 LONG tmOverhang;
1085 LONG tmDigitizedAspectX;
1086 LONG tmDigitizedAspectY;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001087 BYTE tmFirstChar;
1088 BYTE tmLastChar;
1089 BYTE tmDefaultChar;
1090 BYTE tmBreakChar;
1091 BYTE tmItalic;
1092 BYTE tmUnderlined;
1093 BYTE tmStruckOut;
1094 BYTE tmPitchAndFamily;
1095 BYTE tmCharSet;
1096 DWORD ntmFlags;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001097 UINT ntmSizeEM;
1098 UINT ntmCellHeight;
1099 UINT ntmAvgWidth;
Francois Gouget6c97e452000-11-10 22:33:45 +00001100} NEWTEXTMETRICA, *PNEWTEXTMETRICA, *LPNEWTEXTMETRICA;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001101
1102typedef struct
1103{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001104 LONG tmHeight;
1105 LONG tmAscent;
1106 LONG tmDescent;
1107 LONG tmInternalLeading;
1108 LONG tmExternalLeading;
1109 LONG tmAveCharWidth;
1110 LONG tmMaxCharWidth;
1111 LONG tmWeight;
1112 LONG tmOverhang;
1113 LONG tmDigitizedAspectX;
1114 LONG tmDigitizedAspectY;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001115 WCHAR tmFirstChar;
1116 WCHAR tmLastChar;
1117 WCHAR tmDefaultChar;
1118 WCHAR tmBreakChar;
1119 BYTE tmItalic;
1120 BYTE tmUnderlined;
1121 BYTE tmStruckOut;
1122 BYTE tmPitchAndFamily;
1123 BYTE tmCharSet;
1124 DWORD ntmFlags;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001125 UINT ntmSizeEM;
1126 UINT ntmCellHeight;
1127 UINT ntmAvgWidth;
Francois Gouget6c97e452000-11-10 22:33:45 +00001128} NEWTEXTMETRICW, *PNEWTEXTMETRICW, *LPNEWTEXTMETRICW;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001129
1130DECL_WINELIB_TYPE_AW(NEWTEXTMETRIC)
Francois Gouget6c97e452000-11-10 22:33:45 +00001131DECL_WINELIB_TYPE_AW(PNEWTEXTMETRIC)
Veksler Michael1346a3c1998-12-15 11:15:35 +00001132DECL_WINELIB_TYPE_AW(LPNEWTEXTMETRIC)
1133
1134typedef struct
1135{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001136 NEWTEXTMETRICA ntmetm;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001137 FONTSIGNATURE ntmeFontSignature;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001138} NEWTEXTMETRICEXA,*LPNEWTEXTMETRICEXA;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001139
1140typedef struct
1141{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001142 NEWTEXTMETRICW ntmetm;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001143 FONTSIGNATURE ntmeFontSignature;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001144} NEWTEXTMETRICEXW,*LPNEWTEXTMETRICEXW;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001145
1146DECL_WINELIB_TYPE_AW(NEWTEXTMETRICEX)
1147DECL_WINELIB_TYPE_AW(LPNEWTEXTMETRICEX)
1148
Francois Gouget6c97e452000-11-10 22:33:45 +00001149typedef int CALLBACK (*OLDFONTENUMPROCA)(const LOGFONTA*,const TEXTMETRICA*,
1150 DWORD,LPARAM);
1151typedef int CALLBACK (*OLDFONTENUMPROCW)(const LOGFONTW*,const TEXTMETRICW*,
1152 DWORD,LPARAM);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001153DECL_WINELIB_TYPE_AW(OLDFONTENUMPROC)
1154
Francois Gouget6c97e452000-11-10 22:33:45 +00001155typedef OLDFONTENUMPROCA FONTENUMPROCA;
1156typedef OLDFONTENUMPROCW FONTENUMPROCW;
1157DECL_WINELIB_TYPE_AW(FONTENUMPROC)
1158
1159typedef int CALLBACK (*FONTENUMPROCEXA)(LPENUMLOGFONTEXA,LPNEWTEXTMETRICEXA,DWORD,LPARAM);
1160typedef int CALLBACK (*FONTENUMPROCEXW)(LPENUMLOGFONTEXW,LPNEWTEXTMETRICEXW,DWORD,LPARAM);
Veksler Michael1346a3c1998-12-15 11:15:35 +00001161DECL_WINELIB_TYPE_AW(FONTENUMPROCEX)
1162
Francois Gougetae41e8c2000-06-11 20:07:58 +00001163typedef INT CALLBACK (*GOBJENUMPROC)(LPVOID,LPARAM);
1164typedef VOID CALLBACK (*LINEDDAPROC)(INT,INT,LPARAM);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001165
Veksler Michael1346a3c1998-12-15 11:15:35 +00001166 /* tmPitchAndFamily bits */
1167#define TMPF_FIXED_PITCH 1 /* means variable pitch */
1168#define TMPF_VECTOR 2
1169#define TMPF_TRUETYPE 4
1170#define TMPF_DEVICE 8
1171
1172 /* Text alignment */
1173#define TA_NOUPDATECP 0x00
1174#define TA_UPDATECP 0x01
1175#define TA_LEFT 0x00
1176#define TA_RIGHT 0x02
1177#define TA_CENTER 0x06
1178#define TA_TOP 0x00
1179#define TA_BOTTOM 0x08
1180#define TA_BASELINE 0x18
Francois Gouget6c97e452000-11-10 22:33:45 +00001181#define TA_RTLREADING 0x100
1182#define TA_MASK TA_BASELINE+TA_CENTER+TA_UPDATECP+TA_RTLREADING
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001183
1184#define VTA_BASELINE TA_BASELINE
1185#define VTA_LEFT TA_BOTTOM
1186#define VTA_RIGHT TA_TOP
1187#define VTA_CENTER TA_CENTER
1188#define VTA_BOTTOM TA_RIGHT
1189#define VTA_TOP TA_LEFT
1190
Veksler Michael1346a3c1998-12-15 11:15:35 +00001191
1192 /* ExtTextOut() parameters */
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001193#define ETO_GRAYED 0x0001
1194#define ETO_OPAQUE 0x0002
1195#define ETO_CLIPPED 0x0004
1196#define ETO_GLYPH_INDEX 0x0010
Matthew Lake18727102000-07-08 18:31:43 +00001197#define ETO_RTLREADING 0x0080
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001198#define ETO_IGNORELANGUAGE 0x1000
Veksler Michael1346a3c1998-12-15 11:15:35 +00001199
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001200#define ASPECT_FILTERING 0x0001
Veksler Michael1346a3c1998-12-15 11:15:35 +00001201
1202typedef struct
1203{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001204 UINT gmBlackBoxX;
1205 UINT gmBlackBoxY;
1206 POINT gmptGlyphOrigin;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001207 SHORT gmCellIncX;
1208 SHORT gmCellIncY;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001209} GLYPHMETRICS, *LPGLYPHMETRICS;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001210
Veksler Michael1346a3c1998-12-15 11:15:35 +00001211
1212#define GGO_METRICS 0
1213#define GGO_BITMAP 1
1214#define GGO_NATIVE 2
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001215#define GGO_GRAY2_BITMAP 4
1216#define GGO_GRAY4_BITMAP 5
1217#define GGO_GRAY8_BITMAP 6
1218#define GGO_GLYPH_INDEX 0x80
1219
Veksler Michael1346a3c1998-12-15 11:15:35 +00001220typedef struct
1221{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001222 WORD fract;
1223 SHORT value;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001224} FIXED;
1225
Paul Quinn89b21b41999-03-14 13:47:00 +00001226typedef struct tagPOINTFX
1227{
1228 FIXED x;
1229 FIXED y;
1230} POINTFX, *LPPOINTFX;
1231
1232typedef struct tagTTPOLYCURVE
1233{
1234 WORD wType;
1235 WORD cpfx;
1236 POINTFX apfx[1];
1237} TTPOLYCURVE, *LPTTPOLYCURVE;
1238
1239typedef struct tagTTPOLYGONHEADER
1240{
1241 DWORD cb;
1242 DWORD dwType;
1243 POINTFX pfxStart;
1244} TTPOLYGONHEADER, *LPTTPOLYGONHEADER;
1245
Veksler Michael1346a3c1998-12-15 11:15:35 +00001246typedef struct
1247{
1248 FIXED eM11;
1249 FIXED eM12;
1250 FIXED eM21;
1251 FIXED eM22;
1252} MAT2, *LPMAT2;
1253
1254 /* for GetCharABCWidths() */
1255typedef struct
1256{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001257 INT abcA;
1258 UINT abcB;
1259 INT abcC;
Francois Gouget6c97e452000-11-10 22:33:45 +00001260} ABC, *PABC, *LPABC;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001261
Veksler Michael1346a3c1998-12-15 11:15:35 +00001262
1263 /* for GetCharacterPlacement () */
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001264
1265#define GCP_DBCS 0x0001
1266#define GCP_REORDER 0x0002
1267#define GCP_USEKERNING 0x0008
1268#define GCP_GLYPHSHAPE 0x0010
1269#define GCP_LIGATE 0x0020
1270#define GCP_DIACRITIC 0x0100
1271#define GCP_KASHIDA 0x0200
1272#define GCP_ERROR 0x8000
1273#define FLI_MASK 0x103b
1274#define GCP_JUSTIFY 0x00010000L
1275#define FLI_GLYPHS 0x00040000L
1276#define GCP_CLASSIN 0x00080000L
1277#define GCP_MAXEXTENT 0x00100000L
1278#define GCP_JUSTIFYIN 0x00200000L
1279#define GCP_DISPLAYZWG 0x00400000L
1280#define GCP_SYMSWAPOFF 0x00800000L
1281#define GCP_NUMERICOVERRIDE 0x01000000L
1282#define GCP_NEUTRALOVERRIDE 0x02000000L
1283#define GCP_NUMERICSLATIN 0x04000000L
1284#define GCP_NUMERICSLOCAL 0x08000000L
1285
1286#define GCPCLASS_LATIN 1
1287#define GCPCLASS_HEBREW 2
1288#define GCPCLASS_ARABIC 3
1289#define GCPCLASS_NEUTRAL 4
1290#define GCPCLASS_LOCALNUMBER 5
1291#define GCPCLASS_LATINNUMBER 6
1292#define GCPCLASS_LATINNUMERICTERMINATOR 7
1293#define GCPCLASS_LATINNUMERICSEPARATOR 8
1294#define GCPCLASS_NUMERICSEPARATOR 9
1295#define GCPCLASS_PREBOUNDLTR 0x80
1296#define GCPCLASS_PREBOUNDRLT 0x40
1297#define GCPCLASS_POSTBOUNDLTR 0x20
1298#define GCPCLASS_POSTBOUNDRTL 0x10
1299
1300#define GCPGLYPH_LINKBEFORE 0x8000
1301#define GCPGLYPH_LINKAFTER 0x4000
1302
1303
1304typedef struct tagGCP_RESULTSA{
Veksler Michael1346a3c1998-12-15 11:15:35 +00001305 DWORD lStructSize;
1306 LPSTR lpOutString;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001307 UINT *lpOrder;
1308 INT *lpDx;
1309 INT *lpCaretPos;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001310 LPSTR lpClass;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001311 LPWSTR lpGlyphs;
1312 UINT nGlyphs;
1313 UINT nMaxFit;
Francois Gouget6c97e452000-11-10 22:33:45 +00001314} GCP_RESULTSA, *LPGCP_RESULTSA;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001315
Alexandre Julliarda3960291999-02-26 11:11:13 +00001316typedef struct tagGCP_RESULTSW
Veksler Michael1346a3c1998-12-15 11:15:35 +00001317{
1318 DWORD lStructSize;
1319 LPWSTR lpOutString;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001320 UINT *lpOrder;
1321 INT *lpDx;
1322 INT *lpCaretPos;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001323 LPWSTR lpClass;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001324 LPWSTR lpGlyphs;
1325 UINT nGlyphs;
1326 UINT nMaxFit;
Francois Gouget6c97e452000-11-10 22:33:45 +00001327} GCP_RESULTSW, *LPGCP_RESULTSW;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001328
1329DECL_WINELIB_TYPE_AW(GCP_RESULTS)
Francois Gouget6c97e452000-11-10 22:33:45 +00001330DECL_WINELIB_TYPE_AW(LPGCP_RESULTS)
Veksler Michael1346a3c1998-12-15 11:15:35 +00001331
1332 /* Rasterizer status */
1333typedef struct
1334{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001335 SHORT nSize;
1336 SHORT wFlags;
1337 SHORT nLanguageID;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001338} RASTERIZER_STATUS, *LPRASTERIZER_STATUS;
1339
1340#define TT_AVAILABLE 0x0001
1341#define TT_ENABLED 0x0002
1342
Jim Aston10141fe1999-04-25 12:31:20 +00001343#define TT_PRIM_LINE 1
1344#define TT_PRIM_QSPLINE 2
1345#define TT_POLYGON_TYPE 24
1346
Veksler Michael1346a3c1998-12-15 11:15:35 +00001347/* Get/SetSystemPaletteUse() values */
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001348#define SYSPAL_ERROR 0
Veksler Michael1346a3c1998-12-15 11:15:35 +00001349#define SYSPAL_STATIC 1
1350#define SYSPAL_NOSTATIC 2
1351
1352typedef struct tagPALETTEENTRY
1353{
1354 BYTE peRed, peGreen, peBlue, peFlags;
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +00001355} PALETTEENTRY, *PPALETTEENTRY, *LPPALETTEENTRY;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001356
1357/* Logical palette entry flags */
1358#define PC_RESERVED 0x01
1359#define PC_EXPLICIT 0x02
1360#define PC_NOCOLLAPSE 0x04
1361
Michael Veksler4405f3c1999-08-18 18:35:57 +00001362typedef struct tagLOGPALETTE
Veksler Michael1346a3c1998-12-15 11:15:35 +00001363{
1364 WORD palVersion;
1365 WORD palNumEntries;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001366 PALETTEENTRY palPalEntry[1];
Paul Quinnaaa83061999-06-05 15:23:20 +00001367} LOGPALETTE, *PLOGPALETTE, *LPLOGPALETTE, *NPLOGPALETTE;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001368
1369 /* Pens */
1370
1371typedef struct
1372{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001373 UINT lopnStyle;
1374 POINT lopnWidth;
1375 COLORREF lopnColor;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001376} LOGPEN, *LPLOGPEN;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001377
Veksler Michael1346a3c1998-12-15 11:15:35 +00001378
Paul Quinn1beaae51998-12-15 15:38:36 +00001379typedef struct tagEXTLOGPEN
1380{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001381 DWORD elpPenStyle;
1382 DWORD elpWidth;
1383 UINT elpBrushStyle;
1384 COLORREF elpColor;
1385 LONG elpHatch;
1386 DWORD elpNumEntries;
1387 DWORD elpStyleEntry[1];
Paul Quinn1beaae51998-12-15 15:38:36 +00001388} EXTLOGPEN, *PEXTLOGPEN, *NPEXTLOGPEN, *LPEXTLOGPEN;
1389
Veksler Michael1346a3c1998-12-15 11:15:35 +00001390#define PS_SOLID 0x00000000
1391#define PS_DASH 0x00000001
1392#define PS_DOT 0x00000002
1393#define PS_DASHDOT 0x00000003
1394#define PS_DASHDOTDOT 0x00000004
1395#define PS_NULL 0x00000005
1396#define PS_INSIDEFRAME 0x00000006
1397#define PS_USERSTYLE 0x00000007
1398#define PS_ALTERNATE 0x00000008
1399#define PS_STYLE_MASK 0x0000000f
1400
1401#define PS_ENDCAP_ROUND 0x00000000
1402#define PS_ENDCAP_SQUARE 0x00000100
1403#define PS_ENDCAP_FLAT 0x00000200
1404#define PS_ENDCAP_MASK 0x00000f00
1405
1406#define PS_JOIN_ROUND 0x00000000
1407#define PS_JOIN_BEVEL 0x00001000
1408#define PS_JOIN_MITER 0x00002000
1409#define PS_JOIN_MASK 0x0000f000
1410
1411#define PS_COSMETIC 0x00000000
1412#define PS_GEOMETRIC 0x00010000
1413#define PS_TYPE_MASK 0x000f0000
1414
1415 /* Regions */
1416
1417#define ERROR 0
1418#define NULLREGION 1
1419#define SIMPLEREGION 2
1420#define COMPLEXREGION 3
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001421#define RGN_ERROR ERROR
Veksler Michael1346a3c1998-12-15 11:15:35 +00001422
1423#define RGN_AND 1
1424#define RGN_OR 2
1425#define RGN_XOR 3
1426#define RGN_DIFF 4
1427#define RGN_COPY 5
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001428#define RGN_MIN RGN_AND
1429#define RGN_MAX RGN_COPY
Veksler Michael1346a3c1998-12-15 11:15:35 +00001430 /* Device contexts */
1431
1432/* GetDCEx flags */
1433#define DCX_WINDOW 0x00000001
1434#define DCX_CACHE 0x00000002
1435#define DCX_CLIPCHILDREN 0x00000008
1436#define DCX_CLIPSIBLINGS 0x00000010
1437#define DCX_PARENTCLIP 0x00000020
1438#define DCX_EXCLUDERGN 0x00000040
1439#define DCX_INTERSECTRGN 0x00000080
1440#define DCX_LOCKWINDOWUPDATE 0x00000400
1441#define DCX_USESTYLE 0x00010000
1442
1443 /* Polygon modes */
1444#define ALTERNATE 1
1445#define WINDING 2
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001446#define POLYFILL_LAST 2
Veksler Michael1346a3c1998-12-15 11:15:35 +00001447
Francois Gouget6371e832000-10-13 23:12:19 +00001448/* Background modes */
1449/* Apparently some broken svr4 includes define TRANSPARENT */
Veksler Michael1346a3c1998-12-15 11:15:35 +00001450#undef TRANSPARENT
Veksler Michael1346a3c1998-12-15 11:15:35 +00001451#define TRANSPARENT 1
1452#define OPAQUE 2
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001453#define BKMODE_LAST 2
Veksler Michael1346a3c1998-12-15 11:15:35 +00001454
1455 /* Graphics Modes */
1456#define GM_COMPATIBLE 1
1457#define GM_ADVANCED 2
1458#define GM_LAST 2
1459
1460 /* Arc direction modes */
1461#define AD_COUNTERCLOCKWISE 1
1462#define AD_CLOCKWISE 2
1463
1464 /* Map modes */
1465#define MM_TEXT 1
1466#define MM_LOMETRIC 2
1467#define MM_HIMETRIC 3
1468#define MM_LOENGLISH 4
1469#define MM_HIENGLISH 5
1470#define MM_TWIPS 6
1471#define MM_ISOTROPIC 7
1472#define MM_ANISOTROPIC 8
1473
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001474#define MM_MIN MM_TEXT
1475#define MM_MAX MM_ANISOTROPIC
1476#define MM_MAX_FIXEDSCALE MM_TWIPS
1477
Veksler Michael1346a3c1998-12-15 11:15:35 +00001478 /* Coordinate modes */
1479#define ABSOLUTE 1
1480#define RELATIVE 2
1481
1482 /* Flood fill modes */
1483#define FLOODFILLBORDER 0
1484#define FLOODFILLSURFACE 1
1485
1486 /* Device parameters for GetDeviceCaps() */
1487#define DRIVERVERSION 0
1488#define TECHNOLOGY 2
1489#define HORZSIZE 4
1490#define VERTSIZE 6
1491#define HORZRES 8
1492#define VERTRES 10
1493#define BITSPIXEL 12
1494#define PLANES 14
1495#define NUMBRUSHES 16
1496#define NUMPENS 18
1497#define NUMMARKERS 20
1498#define NUMFONTS 22
1499#define NUMCOLORS 24
1500#define PDEVICESIZE 26
1501#define CURVECAPS 28
1502#define LINECAPS 30
1503#define POLYGONALCAPS 32
1504#define TEXTCAPS 34
1505#define CLIPCAPS 36
1506#define RASTERCAPS 38
1507#define ASPECTX 40
1508#define ASPECTY 42
1509#define ASPECTXY 44
1510#define LOGPIXELSX 88
1511#define LOGPIXELSY 90
Brian Teague161bc832000-11-29 20:02:46 +00001512#define CAPS1 94
Veksler Michael1346a3c1998-12-15 11:15:35 +00001513#define SIZEPALETTE 104
1514#define NUMRESERVED 106
1515#define COLORRES 108
1516
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001517#define PHYSICALWIDTH 110
1518#define PHYSICALHEIGHT 111
1519#define PHYSICALOFFSETX 112
1520#define PHYSICALOFFSETY 113
1521#define SCALINGFACTORX 114
1522#define SCALINGFACTORY 115
1523#define VREFRESH 116
1524#define DESKTOPVERTRES 117
1525#define DESKTOPHORZRES 118
1526#define BTLALIGNMENT 119
1527
Veksler Michael1346a3c1998-12-15 11:15:35 +00001528/* TECHNOLOGY */
1529#define DT_PLOTTER 0
1530#define DT_RASDISPLAY 1
1531#define DT_RASPRINTER 2
1532#define DT_RASCAMERA 3
1533#define DT_CHARSTREAM 4
1534#define DT_METAFILE 5
1535#define DT_DISPFILE 6
1536
1537/* CURVECAPS */
1538#define CC_NONE 0x0000
1539#define CC_CIRCLES 0x0001
1540#define CC_PIE 0x0002
1541#define CC_CHORD 0x0004
1542#define CC_ELLIPSES 0x0008
1543#define CC_WIDE 0x0010
1544#define CC_STYLED 0x0020
1545#define CC_WIDESTYLED 0x0040
1546#define CC_INTERIORS 0x0080
1547#define CC_ROUNDRECT 0x0100
1548
1549/* LINECAPS */
1550#define LC_NONE 0x0000
1551#define LC_POLYLINE 0x0002
1552#define LC_MARKER 0x0004
1553#define LC_POLYMARKER 0x0008
1554#define LC_WIDE 0x0010
1555#define LC_STYLED 0x0020
1556#define LC_WIDESTYLED 0x0040
1557#define LC_INTERIORS 0x0080
1558
1559/* POLYGONALCAPS */
1560#define PC_NONE 0x0000
1561#define PC_POLYGON 0x0001
1562#define PC_RECTANGLE 0x0002
1563#define PC_WINDPOLYGON 0x0004
Francois Gouget6c97e452000-11-10 22:33:45 +00001564#define PC_TRAPEZOID 0x0004
Veksler Michael1346a3c1998-12-15 11:15:35 +00001565#define PC_SCANLINE 0x0008
1566#define PC_WIDE 0x0010
1567#define PC_STYLED 0x0020
1568#define PC_WIDESTYLED 0x0040
1569#define PC_INTERIORS 0x0080
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001570#define PC_POLYPOLYGON 0x0100
1571#define PC_PATHS 0x0200
Veksler Michael1346a3c1998-12-15 11:15:35 +00001572
1573/* TEXTCAPS */
1574#define TC_OP_CHARACTER 0x0001
1575#define TC_OP_STROKE 0x0002
1576#define TC_CP_STROKE 0x0004
1577#define TC_CR_90 0x0008
1578#define TC_CR_ANY 0x0010
1579#define TC_SF_X_YINDEP 0x0020
1580#define TC_SA_DOUBLE 0x0040
1581#define TC_SA_INTEGER 0x0080
1582#define TC_SA_CONTIN 0x0100
1583#define TC_EA_DOUBLE 0x0200
1584#define TC_IA_ABLE 0x0400
1585#define TC_UA_ABLE 0x0800
1586#define TC_SO_ABLE 0x1000
1587#define TC_RA_ABLE 0x2000
1588#define TC_VA_ABLE 0x4000
1589#define TC_RESERVED 0x8000
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001590#define TC_SCROLLBLT 0x00010000
Veksler Michael1346a3c1998-12-15 11:15:35 +00001591
1592/* CLIPCAPS */
1593#define CP_NONE 0x0000
1594#define CP_RECTANGLE 0x0001
1595#define CP_REGION 0x0002
1596
1597/* RASTERCAPS */
1598#define RC_NONE 0x0000
1599#define RC_BITBLT 0x0001
1600#define RC_BANDING 0x0002
1601#define RC_SCALING 0x0004
1602#define RC_BITMAP64 0x0008
1603#define RC_GDI20_OUTPUT 0x0010
1604#define RC_GDI20_STATE 0x0020
1605#define RC_SAVEBITMAP 0x0040
1606#define RC_DI_BITMAP 0x0080
1607#define RC_PALETTE 0x0100
1608#define RC_DIBTODEV 0x0200
1609#define RC_BIGFONT 0x0400
1610#define RC_STRETCHBLT 0x0800
1611#define RC_FLOODFILL 0x1000
1612#define RC_STRETCHDIB 0x2000
1613#define RC_OP_DX_OUTPUT 0x4000
1614#define RC_DEVBITS 0x8000
1615
Brian Teague161bc832000-11-29 20:02:46 +00001616/* CAPS1 */
1617
1618#define C1_TRANSPARENT 0x0001
1619#define TC_TT_ABLE 0x0002
1620#define C1_TT_CR_ANY 0x0004
1621#define C1_EMF_COMPLIANT 0x0008
1622#define C1_DIBENGINE 0x0010
1623#define C1_GAMMA_RAMP 0x0040
1624#define C1_REINIT_ABLE 0x0080
1625#define C1_GLYPH_INDEX 0x0100
1626#define C1_BIT_PACKED 0x0200
1627#define C1_BYTE_PACKED 0x0400
1628#define C1_COLORCURSOR 0x0800
1629#define C1_CMYK_ABLE 0x1000
1630#define C1_SLOW_CARD 0x2000
1631
Veksler Michael1346a3c1998-12-15 11:15:35 +00001632 /* Device-independent bitmaps */
1633
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +00001634typedef struct {
1635 BYTE rgbBlue;
1636 BYTE rgbGreen;
1637 BYTE rgbRed;
1638 BYTE rgbReserved;
1639} RGBQUAD, *LPRGBQUAD;
1640
1641typedef struct {
1642 BYTE rgbtBlue;
1643 BYTE rgbtGreen;
1644 BYTE rgbtRed;
1645} RGBTRIPLE;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001646
1647typedef struct
1648{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001649 WORD bfType;
1650 DWORD bfSize;
1651 WORD bfReserved1;
1652 WORD bfReserved2;
1653 DWORD bfOffBits;
Francois Gouget6c97e452000-11-10 22:33:45 +00001654} BITMAPFILEHEADER, *PBITMAPFILEHEADER, *LPBITMAPFILEHEADER;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001655
Alexandre Julliard83f52d12000-09-26 22:20:14 +00001656#define MAKEPOINTS(l) (*((POINTS *)&(l)))
1657
Veksler Michael1346a3c1998-12-15 11:15:35 +00001658typedef struct
1659{
1660 DWORD biSize;
1661 LONG biWidth;
1662 LONG biHeight;
1663 WORD biPlanes;
1664 WORD biBitCount;
1665 DWORD biCompression;
1666 DWORD biSizeImage;
1667 LONG biXPelsPerMeter;
1668 LONG biYPelsPerMeter;
1669 DWORD biClrUsed;
1670 DWORD biClrImportant;
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +00001671} BITMAPINFOHEADER, *PBITMAPINFOHEADER, *LPBITMAPINFOHEADER;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001672
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001673typedef struct
1674{
1675 DWORD bV4Size;
1676 LONG bV4Width;
1677 LONG bV4Height;
1678 WORD bV4Planes;
1679 WORD bV4BitCount;
1680 DWORD bV4Compression;
1681 DWORD bV4SizeImage;
1682 LONG bV4XPelsPerMeter;
1683 LONG bV4YPelsPerMeter;
1684 DWORD bV4ClrUsed;
1685 DWORD bV4ClrImportant;
1686 DWORD bV4RedMask;
1687 DWORD bV4GreenMask;
1688 DWORD bV4BlueMask;
1689 DWORD bV4AlphaMask;
1690 DWORD bV4CSType;
1691 CIEXYZTRIPLE bV4EndPoints;
1692 DWORD bV4GammaRed;
1693 DWORD bV4GammaGreen;
1694 DWORD bV4GammaBlue;
1695} BITMAPV4HEADER, *PBITMAPV4HEADER;
1696
Francois Gougetf2e65752000-09-22 21:04:30 +00001697typedef struct {
1698 DWORD bV5Size;
1699 LONG bV5Width;
1700 LONG bV5Height;
1701 WORD bV5Planes;
1702 WORD bV5BitCount;
1703 DWORD bV5Compression;
1704 DWORD bV5SizeImage;
1705 LONG bV5XPelsPerMeter;
1706 LONG bV5YPelsPerMeter;
1707 DWORD bV5ClrUsed;
1708 DWORD bV5ClrImportant;
1709 DWORD bV5RedMask;
1710 DWORD bV5GreenMask;
1711 DWORD bV5BlueMask;
1712 DWORD bV5AlphaMask;
1713 DWORD bV5CSType;
1714 CIEXYZTRIPLE bV5Endpoints;
1715 DWORD bV5GammaRed;
1716 DWORD bV5GammaGreen;
1717 DWORD bV5GammaBlue;
1718 DWORD bV5Intent;
1719 DWORD bV5ProfileData;
1720 DWORD bV5ProfileSize;
1721 DWORD bV5Reserved;
1722} BITMAPV5HEADER, *LPBITMAPV5HEADER, *PBITMAPV5HEADER;
1723
1724#define PROFILE_LINKED 'LINK'
1725#define PROFILE_EMBEDDED 'MBED'
1726
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001727
Veksler Michael1346a3c1998-12-15 11:15:35 +00001728 /* biCompression */
1729#define BI_RGB 0
1730#define BI_RLE8 1
1731#define BI_RLE4 2
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001732#define BI_BITFIELDS 3
Veksler Michael1346a3c1998-12-15 11:15:35 +00001733
1734typedef struct {
1735 BITMAPINFOHEADER bmiHeader;
1736 RGBQUAD bmiColors[1];
Francois Gouget6c97e452000-11-10 22:33:45 +00001737} BITMAPINFO, *PBITMAPINFO, *LPBITMAPINFO;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001738
1739typedef struct
1740{
1741 DWORD bcSize;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001742 WORD bcWidth;
1743 WORD bcHeight;
1744 WORD bcPlanes;
1745 WORD bcBitCount;
Francois Gouget6c97e452000-11-10 22:33:45 +00001746} BITMAPCOREHEADER, *PBITMAPCOREHEADER, *LPBITMAPCOREHEADER;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001747
1748typedef struct
1749{
1750 BITMAPCOREHEADER bmciHeader;
1751 RGBTRIPLE bmciColors[1];
Francois Gougetf2e65752000-09-22 21:04:30 +00001752} BITMAPCOREINFO, *PBITMAPCOREINFO, *LPBITMAPCOREINFO;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001753
1754#define DIB_RGB_COLORS 0
1755#define DIB_PAL_COLORS 1
1756#define CBM_INIT 4
1757
1758typedef struct
1759{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001760 BITMAP dsBm;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001761 BITMAPINFOHEADER dsBmih;
1762 DWORD dsBitfields[3];
Alexandre Julliarda3960291999-02-26 11:11:13 +00001763 HANDLE dshSection;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001764 DWORD dsOffset;
Francois Gouget6c97e452000-11-10 22:33:45 +00001765} DIBSECTION, *PDIBSECTION, *LPDIBSECTION;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001766
1767 /* Stock GDI objects for GetStockObject() */
1768
1769#define WHITE_BRUSH 0
1770#define LTGRAY_BRUSH 1
1771#define GRAY_BRUSH 2
1772#define DKGRAY_BRUSH 3
1773#define BLACK_BRUSH 4
1774#define NULL_BRUSH 5
1775#define HOLLOW_BRUSH 5
1776#define WHITE_PEN 6
1777#define BLACK_PEN 7
1778#define NULL_PEN 8
1779#define OEM_FIXED_FONT 10
1780#define ANSI_FIXED_FONT 11
1781#define ANSI_VAR_FONT 12
1782#define SYSTEM_FONT 13
1783#define DEVICE_DEFAULT_FONT 14
1784#define DEFAULT_PALETTE 15
1785#define SYSTEM_FIXED_FONT 16
1786#define DEFAULT_GUI_FONT 17
1787
Alexandre Julliard8da12c41999-01-17 16:55:11 +00001788#define STOCK_LAST 17
1789
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001790#define CLR_INVALID 0xffffffff
Veksler Michael1346a3c1998-12-15 11:15:35 +00001791/* Metafile header structure */
1792typedef struct
1793{
1794 WORD mtType;
1795 WORD mtHeaderSize;
1796 WORD mtVersion;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001797 DWORD mtSize;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001798 WORD mtNoObjects;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001799 DWORD mtMaxRecord;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001800 WORD mtNoParameters;
Francois Gouget6c97e452000-11-10 22:33:45 +00001801} METAHEADER, *PMETAHEADER, *LPMETAHEADER;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001802
1803/* Metafile typical record structure */
1804typedef struct
1805{
1806 DWORD rdSize;
1807 WORD rdFunction;
Alexandre Julliard8da12c41999-01-17 16:55:11 +00001808 WORD rdParm[1];
Francois Gouget6c97e452000-11-10 22:33:45 +00001809} METARECORD, *PMETARECORD, *LPMETARECORD;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001810
1811/* Handle table structure */
1812
1813typedef struct
1814{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001815 HGDIOBJ objectHandle[1];
Francois Gouget6c97e452000-11-10 22:33:45 +00001816} HANDLETABLE, *PHANDLETABLE, *LPHANDLETABLE;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001817
Veksler Michael1346a3c1998-12-15 11:15:35 +00001818
1819/* Clipboard metafile picture structure */
1820typedef struct
1821{
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00001822 LONG mm;
1823 LONG xExt;
1824 LONG yExt;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001825 HMETAFILE hMF;
1826} METAFILEPICT, *LPMETAFILEPICT;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001827
Veksler Michael1346a3c1998-12-15 11:15:35 +00001828
1829/* Metafile functions */
1830#define META_SETBKCOLOR 0x0201
1831#define META_SETBKMODE 0x0102
1832#define META_SETMAPMODE 0x0103
1833#define META_SETROP2 0x0104
1834#define META_SETRELABS 0x0105
1835#define META_SETPOLYFILLMODE 0x0106
1836#define META_SETSTRETCHBLTMODE 0x0107
1837#define META_SETTEXTCHAREXTRA 0x0108
1838#define META_SETTEXTCOLOR 0x0209
1839#define META_SETTEXTJUSTIFICATION 0x020A
1840#define META_SETWINDOWORG 0x020B
1841#define META_SETWINDOWEXT 0x020C
1842#define META_SETVIEWPORTORG 0x020D
1843#define META_SETVIEWPORTEXT 0x020E
1844#define META_OFFSETWINDOWORG 0x020F
1845#define META_SCALEWINDOWEXT 0x0410
1846#define META_OFFSETVIEWPORTORG 0x0211
1847#define META_SCALEVIEWPORTEXT 0x0412
1848#define META_LINETO 0x0213
1849#define META_MOVETO 0x0214
1850#define META_EXCLUDECLIPRECT 0x0415
1851#define META_INTERSECTCLIPRECT 0x0416
1852#define META_ARC 0x0817
1853#define META_ELLIPSE 0x0418
1854#define META_FLOODFILL 0x0419
1855#define META_PIE 0x081A
1856#define META_RECTANGLE 0x041B
1857#define META_ROUNDRECT 0x061C
1858#define META_PATBLT 0x061D
1859#define META_SAVEDC 0x001E
1860#define META_SETPIXEL 0x041F
1861#define META_OFFSETCLIPRGN 0x0220
1862#define META_TEXTOUT 0x0521
1863#define META_BITBLT 0x0922
1864#define META_STRETCHBLT 0x0B23
1865#define META_POLYGON 0x0324
1866#define META_POLYLINE 0x0325
1867#define META_ESCAPE 0x0626
1868#define META_RESTOREDC 0x0127
1869#define META_FILLREGION 0x0228
1870#define META_FRAMEREGION 0x0429
1871#define META_INVERTREGION 0x012A
1872#define META_PAINTREGION 0x012B
1873#define META_SELECTCLIPREGION 0x012C
1874#define META_SELECTOBJECT 0x012D
1875#define META_SETTEXTALIGN 0x012E
1876#define META_DRAWTEXT 0x062F
1877#define META_CHORD 0x0830
1878#define META_SETMAPPERFLAGS 0x0231
1879#define META_EXTTEXTOUT 0x0A32
1880#define META_SETDIBTODEV 0x0D33
1881#define META_SELECTPALETTE 0x0234
1882#define META_REALIZEPALETTE 0x0035
1883#define META_ANIMATEPALETTE 0x0436
1884#define META_SETPALENTRIES 0x0037
1885#define META_POLYPOLYGON 0x0538
1886#define META_RESIZEPALETTE 0x0139
1887#define META_DIBBITBLT 0x0940
1888#define META_DIBSTRETCHBLT 0x0B41
1889#define META_DIBCREATEPATTERNBRUSH 0x0142
1890#define META_STRETCHDIB 0x0F43
1891#define META_EXTFLOODFILL 0x0548
1892#define META_RESETDC 0x014C
1893#define META_STARTDOC 0x014D
1894#define META_STARTPAGE 0x004F
1895#define META_ENDPAGE 0x0050
1896#define META_ABORTDOC 0x0052
1897#define META_ENDDOC 0x005E
1898#define META_DELETEOBJECT 0x01F0
1899#define META_CREATEPALETTE 0x00F7
1900#define META_CREATEBRUSH 0x00F8
1901#define META_CREATEPATTERNBRUSH 0x01F9
1902#define META_CREATEPENINDIRECT 0x02FA
1903#define META_CREATEFONTINDIRECT 0x02FB
1904#define META_CREATEBRUSHINDIRECT 0x02FC
1905#define META_CREATEBITMAPINDIRECT 0x02FD
1906#define META_CREATEBITMAP 0x06FE
1907#define META_CREATEREGION 0x06FF
1908#define META_UNKNOWN 0x0529 /* FIXME: unknown meta magic */
1909
Francois Gougetae41e8c2000-06-11 20:07:58 +00001910typedef INT CALLBACK (*MFENUMPROC)(HDC,HANDLETABLE*,METARECORD*,
Alexandre Julliarda3960291999-02-26 11:11:13 +00001911 INT,LPARAM);
Veksler Michael1346a3c1998-12-15 11:15:35 +00001912
1913/* enhanced metafile structures and functions */
1914
1915/* note that ENHMETAHEADER is just a particular kind of ENHMETARECORD,
1916 ie. the header is just the first record in the metafile */
1917typedef struct {
1918 DWORD iType;
1919 DWORD nSize;
Huw D M Daviesad1e06e1999-04-24 11:47:26 +00001920 RECTL rclBounds;
1921 RECTL rclFrame;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001922 DWORD dSignature;
1923 DWORD nVersion;
1924 DWORD nBytes;
1925 DWORD nRecords;
1926 WORD nHandles;
1927 WORD sReserved;
1928 DWORD nDescription;
1929 DWORD offDescription;
1930 DWORD nPalEntries;
Huw D M Daviesad1e06e1999-04-24 11:47:26 +00001931 SIZEL szlDevice;
1932 SIZEL szlMillimeters;
Peter Hunnisettf2b84922000-01-15 22:17:49 +00001933
1934 /* Fields for winver >= win95 */
Veksler Michael1346a3c1998-12-15 11:15:35 +00001935 DWORD cbPixelFormat;
1936 DWORD offPixelFormat;
1937 DWORD bOpenGL;
Peter Hunnisettf2b84922000-01-15 22:17:49 +00001938
1939 /* Fields for winver >= win98 */
1940 SIZEL szlMicrometers;
1941
Francois Gouget6c97e452000-11-10 22:33:45 +00001942} ENHMETAHEADER, *PENHMETAHEADER, *LPENHMETAHEADER;
Veksler Michael1346a3c1998-12-15 11:15:35 +00001943
1944typedef struct {
1945 DWORD iType;
1946 DWORD nSize;
1947 DWORD dParm[1];
1948} ENHMETARECORD, *LPENHMETARECORD;
1949
Huw D M Daviesa7f21401999-04-22 09:51:53 +00001950typedef struct {
1951 DWORD iType;
1952 DWORD nSize;
1953} EMR, *PEMR;
1954
1955typedef struct {
1956 POINTL ptlReference;
1957 DWORD nChars;
1958 DWORD offString;
1959 DWORD fOptions;
1960 RECTL rcl;
1961 DWORD offDx;
1962} EMRTEXT, *PEMRTEXT;
1963
1964typedef struct {
1965 EMR emr;
1966} EMRABORTPATH, *PEMRABORTPATH,
1967 EMRBEGINPATH, *PEMRBEGINPATH,
1968 EMRENDPATH, *PEMRENDPATH,
1969 EMRCLOSEFIGURE, *PEMRCLOSEFIGURE,
1970 EMRFLATTENPATH, *PEMRFLATTENPATH,
1971 EMRWIDENPATH, *PEMRWIDENPATH,
1972 EMRSETMETARGN, *PEMRSETMETARGN,
1973 EMRSAVEDC, *PEMRSAVEDC,
1974 EMRREALIZEPALETTE, *PEMRREALIZEPALETTE;
1975
1976typedef struct {
1977 EMR emr;
1978 POINTL ptlCenter;
1979 DWORD nRadius;
1980 FLOAT eStartAngle;
1981 FLOAT eSweepAngle;
1982} EMRANGLEARC, *PEMRANGLEARC;
1983
1984typedef struct {
1985 EMR emr;
1986 RECTL rclBox;
1987 POINTL ptlStart;
1988 POINTL ptlEnd;
1989} EMRARC, *PEMRARC,
1990 EMRARCTO, *PEMRARCTO,
1991 EMRCHORD, *PEMRCHORD,
1992 EMRPIE, *PEMRPIE;
1993
1994typedef struct {
1995 EMR emr;
1996 RECTL rclBounds;
1997 LONG xDest;
1998 LONG yDest;
1999 LONG cxDest;
2000 LONG cyDest;
2001 DWORD dwRop;
2002 LONG xSrc;
2003 LONG ySrc;
2004 XFORM xformSrc;
2005 COLORREF crBkColorSrc;
Michael Cardenas6a52a502000-02-07 17:22:01 +00002006 DWORD iUsageSrc;
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002007 DWORD offBmiSrc;
2008 DWORD cbBmiSrc;
2009 DWORD offBitsSrc;
2010 DWORD cbBitsSrc;
2011} EMRBITBLT, *PEMRBITBLT;
2012
2013typedef struct {
2014 EMR emr;
2015 DWORD ihBrush;
2016 LOGBRUSH lb;
2017} EMRCREATEBRUSHINDIRECT, *PEMRCREATEBRUSHINDIRECT;
2018
2019typedef struct {
2020 EMR emr;
2021 DWORD ihCS;
Peter Hunnisettf2b84922000-01-15 22:17:49 +00002022 LOGCOLORSPACEA lcs;
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002023} EMRCREATECOLORSPACE, *PEMRCREATECOLORSPACE;
2024
2025typedef struct {
Peter Hunnisettf2b84922000-01-15 22:17:49 +00002026 EMR emr;
2027 DWORD ihCS;
2028 LOGCOLORSPACEW lcs;
2029 DWORD dwFlags;
2030 DWORD cbData;
2031 BYTE Data[1];
2032} EMRCREATECOLORSPACEW, *PEMRCREATECOLORSPACEW;
2033
2034typedef struct {
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002035 EMR emr;
2036 DWORD ihBrush;
2037 DWORD iUsage;
2038 DWORD offBmi;
2039 DWORD cbBmi;
2040 DWORD offBits;
2041 DWORD cbBits;
2042} EMRCREATEDIBPATTERNBRUSHPT, *PEMRCREATEDIBPATTERNBRUSHPT;
2043
2044typedef struct {
2045 EMR emr;
2046 DWORD ihBrush;
2047 DWORD iUsage;
2048 DWORD offBmi;
2049 DWORD cbBmi;
2050 DWORD offBits;
2051 DWORD cbBits;
2052} EMRCREATEMONOBRUSH, *PEMRCREATEMONOBRUSH;
2053
2054typedef struct {
2055 EMR emr;
2056 DWORD ihPal;
2057 LOGPALETTE lgpl;
2058} EMRCREATEPALETTE, *PEMRCREATEPALETTE;
2059
2060typedef struct {
2061 EMR emr;
2062 DWORD ihPen;
2063 LOGPEN lopn;
2064} EMRCREATEPEN, *PEMRCREATEPEN;
2065
2066typedef struct {
2067 EMR emr;
2068 DWORD ihCS;
2069} EMRDELETECOLORSPACE, *PEMRDELETECOLORSPACE,
2070 EMRSELECTCOLORSPACE, *PEMRSELECTCOLORSPACE,
2071 EMRSETCOLORSPACE, *PEMRSETCOLORSPACE;
2072
2073typedef struct {
2074 EMR emr;
2075 DWORD ihObject;
2076} EMRDELETEOBJECT, *PEMRDELETEOBJECT,
2077 EMRSELECTOBJECT, *PEMRSELECTOBJECT;
2078
2079typedef struct {
2080 EMR emr;
2081 RECTL rclBox;
2082} EMRELLIPSE, *PEMRELLIPSE,
2083 EMRRECTANGLE, *PEMRRECTANGLE;
2084
2085typedef struct {
2086 EMR emr;
2087 DWORD nPalEntries;
2088 DWORD offPalEntries;
2089 DWORD nSizeLast;
2090} EMREOF, *PEMREOF;
2091
2092typedef struct {
2093 EMR emr;
2094 RECTL rclClip;
2095} EMREXCLUDECLIPRECT, *PEMREXCLUDECLIPRECT,
2096 EMRINTERSECTCLIPRECT, *PEMRINTERSECTCLIPRECT;
2097
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002098typedef struct {
2099 EMR emr;
2100 DWORD ihFont;
2101 EXTLOGFONTW elfw;
2102} EMREXTCREATEFONTINDIRECTW, *PEMREXTCREATEFONTINDIRECTW;
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002103
2104typedef struct {
2105 EMR emr;
2106 DWORD ihPen;
2107 DWORD offBmi;
2108 DWORD cbBmi;
2109 DWORD offBits;
2110 DWORD cbBits;
2111 EXTLOGPEN elp;
2112} EMREXTCREATEPEN, *PEMREXTCREATEPEN;
2113
2114typedef struct {
2115 EMR emr;
2116 POINTL ptlStart;
2117 COLORREF crColor;
2118 DWORD iMode;
2119} EMREXTFLOODFILL, *PEMREXTFLOODFILL;
2120
2121typedef struct {
2122 EMR emr;
2123 DWORD cbRgnData;
2124 DWORD iMode;
2125 BYTE RgnData[1];
2126} EMREXTSELECTCLIPRGN, *PEMREXTSELECTCLIPRGN;
2127
2128typedef struct {
2129 EMR emr;
2130 RECTL rclBounds;
2131 DWORD iGraphicsMode;
2132 FLOAT exScale;
2133 FLOAT eyScale;
2134 EMRTEXT emrtext;
2135} EMREXTTEXTOUTA, *PEMREXTTEXTOUTA,
2136 EMREXTTEXTOUTW, *PEMREXTTEXTOUTW;
2137
2138typedef struct {
2139 EMR emr;
2140 RECTL rclBounds;
2141} EMRFILLPATH, *PEMRFILLPATH,
2142 EMRSTROKEANDFILLPATH, *PEMRSTROKEANDFILLPATH,
2143 EMRSTROKEPATH, *PEMRSTROKEPATH;
2144
2145typedef struct {
2146 EMR emr;
2147 RECTL rclBounds;
2148 DWORD cbRgnData;
2149 DWORD ihBrush;
2150 BYTE RgnData[1];
2151} EMRFILLRGN, *PEMRFILLRGN;
2152
2153typedef struct {
2154 DWORD signature;
2155 DWORD nVersion;
2156 DWORD cbData;
2157 DWORD offData;
2158} EMRFORMAT, *PEMRFORMAT;
2159
2160typedef struct {
2161 EMR emr;
2162 RECTL rclBounds;
2163 DWORD cbRgnData;
2164 DWORD ihBrush;
2165 SIZEL szlStroke;
2166 BYTE RgnData[1];
2167} EMRFRAMERGN, *PEMRFRAMERGN;
2168
2169typedef struct {
2170 EMR emr;
2171 DWORD cbData;
2172 BYTE Data[1];
Francois Gouget6c97e452000-11-10 22:33:45 +00002173} EMRGDICOMMENT, *PEMRGDICOMMENT;
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002174
2175#if 0
2176typedef struct {
2177 EMR emr;
2178 RECTL rclBounds;
2179 DWORD nVer;
2180 DWORD nTri;
2181 ULONG ulMode;
2182 TRIVERTEX Ver[1];
2183} EMRGRADIENTFILL, *PEMRGRADIENTFILL;
2184#endif
2185
2186typedef struct {
2187 EMR emr;
2188 RECTL rclBounds;
2189 DWORD cbRgnData;
2190 BYTE RgnData[1];
2191} EMRINVERTRGN, *PEMRINVERTRGN,
2192 EMRPAINTRGN, *PEMRPAINTRGN;
2193
2194typedef struct {
2195 EMR emr;
2196 POINTL ptl;
2197} EMRLINETO, *PEMRLINETO,
2198 EMRMOVETOEX, *PEMRMOVETOEX;
2199
2200typedef struct {
2201 EMR emr;
2202 RECTL rclBounds;
2203 LONG xDest;
2204 LONG yDest;
2205 LONG cxDest;
2206 LONG cyDest;
2207 DWORD dwRop;
2208 LONG xSrc;
2209 LONG ySrc;
2210 XFORM xformSrc;
2211 COLORREF crBkColorSrc;
2212 DWORD iUsageSrc;
2213 DWORD offBmiSrc;
2214 DWORD cbBmiSrc;
2215 DWORD offBitsSrc;
2216 DWORD cbBitsSrc;
2217 LONG xMask;
2218 LONG yMask;
2219 DWORD iUsageMask;
2220 DWORD offBmiMask;
2221 DWORD cbBmiMask;
2222 DWORD offBitsMask;
2223 DWORD cbBitsMask;
2224} EMRMASKBLT, *PEMRMASKBLT;
2225
2226typedef struct {
2227 EMR emr;
2228 XFORM xform;
2229 DWORD iMode;
2230} EMRMODIFYWORLDTRANSFORM, *PEMRMODIFYWORLDTRANSFORM;
2231
2232typedef struct {
2233 EMR emr;
2234 POINTL ptlOffset;
2235} EMROFFSETCLIPRGN, *PEMROFFSETCLIPRGN;
2236
2237typedef struct {
2238 EMR emr;
2239 RECTL rclBounds;
2240 POINTL aptlDst[3];
2241 LONG xSrc;
2242 LONG ySrc;
2243 LONG cxSrc;
2244 LONG cySrc;
2245 XFORM xformSrc;
2246 COLORREF crBkColorSrc;
2247 DWORD iUsageSrc;
2248 DWORD offBmiSrc;
2249 DWORD cbBmiSrc;
2250 DWORD offBitsSrc;
2251 DWORD cbBitsSrc;
2252 LONG xMask;
2253 LONG yMask;
2254 DWORD iUsageMask;
2255 DWORD offBmiMask;
2256 DWORD cbBmiMask;
2257 DWORD offBitsMask;
2258 DWORD cbBitsMask;
2259} EMRPLGBLT, *PEMRPLGBLT;
2260
2261typedef struct {
2262 EMR emr;
2263 RECTL rclBounds;
2264 DWORD cptl;
2265 POINTL aptl[1];
2266} EMRPOLYLINE, *PEMRPOLYLINE,
2267 EMRPOLYBEZIER, *PEMRPOLYBEZIER,
2268 EMRPOLYGON, *PEMRPOLYGON,
2269 EMRPOLYBEZIERTO, *PEMRPOLYBEZIERTO,
2270 EMRPOLYLINETO, *PEMRPOLYLINETO;
2271
2272typedef struct {
2273 EMR emr;
2274 RECTL rclBounds;
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002275 DWORD cptl;
2276 POINTL aptl[1];
2277 BYTE abTypes[1];
2278} EMRPOLYDRAW, *PEMRPOLYDRAW;
2279
2280typedef struct {
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002281 EMR emr;
2282 RECTL rclBounds;
2283 DWORD nPolys;
2284 DWORD cptl;
2285 DWORD aPolyCounts[1];
2286 POINTL aptl[1];
2287} EMRPOLYPOLYLINE, *PEMRPOLYPOLYLINE,
2288 EMRPOLYPOLYGON, *PEMRPOLYPOLYGON;
2289
2290typedef struct {
2291 EMR emr;
2292 RECTL rclBounds;
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002293 DWORD iGraphicsMode;
2294 FLOAT exScale;
2295 FLOAT eyScale;
2296 LONG cStrings;
2297 EMRTEXT aemrtext[1];
2298} EMRPOLYTEXTOUTA, *PEMRPOLYTEXTOUTA,
2299 EMRPOLYTEXTOUTW, *PEMRPOLYTEXTOUTW;
2300
2301typedef struct {
2302 EMR emr;
2303 DWORD ihPal;
2304 DWORD cEntries;
2305} EMRRESIZEPALETTE, *PEMRRESIZEPALETTE;
2306
2307typedef struct {
2308 EMR emr;
2309 LONG iRelative;
2310} EMRRESTOREDC, *PEMRRESTOREDC;
2311
2312typedef struct {
2313 EMR emr;
2314 RECTL rclBox;
2315 SIZEL szlCorner;
2316} EMRROUNDRECT, *PEMRROUNDRECT;
2317
2318typedef struct {
2319 EMR emr;
2320 LONG xNum;
2321 LONG xDenom;
2322 LONG yNum;
2323 LONG yDenom;
2324} EMRSCALEVIEWPORTEXTEX, *PEMRSCALEVIEWPORTEXTEX,
2325 EMRSCALEWINDOWEXTEX, *PEMRSCALEWINDOWEXTEX;
2326
2327typedef struct {
2328 EMR emr;
Huw D M Davies585c8461999-05-02 09:23:51 +00002329 DWORD iMode;
2330} EMRSELECTCLIPPATH, *PEMRSELECTCLIPPATH,
2331 EMRSETBKMODE, *PEMRSETBKMODE,
2332 EMRSETMAPMODE, *PEMRSETMAPMODE,
2333 EMRSETPOLYFILLMODE, *PEMRSETPOLYFILLMODE,
2334 EMRSETROP2, *PEMRSETROP2,
2335 EMRSETSTRETCHBLTMODE, *PEMRSETSTRETCHBLTMODE,
2336 EMRSETTEXTALIGN, *PEMRSETTEXTALIGN,
2337 EMRSETICMMODE, *PERMSETICMMODE,
2338 EMRSETLAYOUT, *PEMRSETLAYOUT;
2339
2340typedef struct {
2341 EMR emr;
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002342 DWORD ihPal;
2343} EMRSELECTPALETTE, *PEMRSELECTPALETTE;
2344
2345typedef struct {
2346 EMR emr;
2347 DWORD iArcDirection;
2348} EMRSETARCDIRECTION, *PEMRSETARCDIRECTION;
2349
2350typedef struct {
2351 EMR emr;
2352 COLORREF crColor;
2353} EMRSETBKCOLOR, *PEMRSETBKCOLOR,
2354 EMRSETTEXTCOLOR, *PEMRSETTEXTCOLOR;
2355
2356typedef struct {
2357 EMR emr;
2358 POINTL ptlOrigin;
2359} EMRSETBRUSHORGEX, *PEMRSETBRUSHORGEX,
2360 EMRSETVIEWPORTORGEX, *PEMRSETVIEWPORTORGEX,
2361 EMRSETWINDOWORGEX, *PEMRSETWINDOWORGEX;
2362
2363typedef struct {
2364 EMR emr;
2365 COLORADJUSTMENT ColorAdjustment;
2366} EMRSETCOLORADJUSTMENT, *PEMRSETCOLORADJUSTMENT;
2367
2368typedef struct {
2369 EMR emr;
2370 RECTL rclBounds;
2371 LONG xDest;
2372 LONG yDest;
2373 LONG xSrc;
2374 LONG ySrc;
2375 LONG cxSrc;
2376 LONG cySrc;
2377 DWORD offBmiSrc;
2378 DWORD cbBmiSrc;
2379 DWORD offBitsSrc;
2380 DWORD cbBitsSrc;
2381 DWORD iUsageSrc;
2382 DWORD iStartScan;
2383 DWORD cScans;
2384} EMRSETDIBITSTODEIVCE, *PEMRSETDIBITSTODEVICE;
2385
2386typedef struct {
2387 EMR emr;
2388 DWORD dwFlags;
2389} EMRSETMAPPERFLAGS, *PEMRSETMAPPERFLAGS;
2390
2391typedef struct {
2392 EMR emr;
2393 FLOAT eMiterLimit;
2394} EMRSETMITERLIMIT, *PEMRSETMITERLIMIT;
2395
2396typedef struct {
2397 EMR emr;
2398 DWORD ihPal;
2399 DWORD iStart;
2400 DWORD cEntries;
2401 PALETTEENTRY aPalEntries[1];
2402} EMRSETPALETTEENTRIES, *PEMRSETPALETTEENTRIES;
2403
2404typedef struct {
2405 EMR emr;
2406 POINTL ptlPixel;
2407 COLORREF crColor;
2408} EMRSETPIXELV, *PEMRSETPIXELV;
2409
2410typedef struct {
2411 EMR emr;
2412 SIZEL szlExtent;
2413} EMRSETVIEWPORTEXTEX, *PEMRSETVIEWPORTEXTEX,
2414 EMRSETWINDOWEXTEX, *PEMRSETWINDOWEXTEX;
2415
2416typedef struct {
2417 EMR emr;
2418 XFORM xform;
2419} EMRSETWORLDTRANSFORM, *PEMRSETWORLDTRANSFORM;
2420
2421typedef struct {
2422 EMR emr;
2423 RECTL rclBounds;
2424 LONG xDest;
2425 LONG yDest;
2426 LONG cxDest;
2427 LONG cyDest;
2428 DWORD dwRop;
2429 LONG xSrc;
2430 LONG ySrc;
2431 XFORM xformSrc;
2432 COLORREF crBkColorSrc;
2433 DWORD iUsageSrc;
2434 DWORD offBmiSrc;
2435 DWORD cbBmiSrc;
2436 DWORD offBitsSrc;
2437 DWORD cbBitsSrc;
2438 LONG cxSrc;
2439 LONG cySrc;
2440} EMRSTRETCHBLT, *PEMRSTRETCHBLT;
2441
2442typedef struct {
2443 EMR emr;
2444 RECTL rclBounds;
2445 LONG xDest;
2446 LONG yDest;
2447 LONG xSrc;
2448 LONG ySrc;
2449 LONG cxSrc;
2450 LONG cySrc;
2451 DWORD offBmiSrc;
2452 DWORD cbBmiSrc;
2453 DWORD offBitsSrc;
2454 DWORD cbBitsSrc;
Michael Cardenas6a52a502000-02-07 17:22:01 +00002455 DWORD iUsageSrc;
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002456 DWORD dwRop;
2457 LONG cxDest;
Michael Cardenas6a52a502000-02-07 17:22:01 +00002458 LONG cyDest;
Huw D M Daviesa7f21401999-04-22 09:51:53 +00002459} EMRSTRETCHDIBITS, *PEMRSTRETCHDIBITS;
2460
Peter Hunnisettf2b84922000-01-15 22:17:49 +00002461typedef struct {
2462 EMR emr;
2463 PIXELFORMATDESCRIPTOR pfd;
2464} EMRPIXELFORMAT, *PEMRPIXELFORMAT;
2465
2466typedef struct tagEMRGLSRECORD {
2467 EMR emr;
2468 DWORD cbData;
2469 BYTE Data[1];
2470} EMRGLSRECORD, *PEMRGLSRECORD;
2471
2472typedef struct {
2473 EMR emr;
2474 RECTL rclBounds;
2475 DWORD cbData;
2476 BYTE Data[1];
2477} EMRGLSBOUNDEDRECORD, *PEMRGLSBOUNDEDRECORD;
2478
Francois Gougetae41e8c2000-06-11 20:07:58 +00002479typedef INT CALLBACK (*ENHMFENUMPROC)(HDC, LPHANDLETABLE,
Alexandre Julliarda3960291999-02-26 11:11:13 +00002480 LPENHMETARECORD, INT, LPVOID);
Veksler Michael1346a3c1998-12-15 11:15:35 +00002481
2482#define EMR_HEADER 1
2483#define EMR_POLYBEZIER 2
2484#define EMR_POLYGON 3
2485#define EMR_POLYLINE 4
2486#define EMR_POLYBEZIERTO 5
2487#define EMR_POLYLINETO 6
2488#define EMR_POLYPOLYLINE 7
2489#define EMR_POLYPOLYGON 8
2490#define EMR_SETWINDOWEXTEX 9
2491#define EMR_SETWINDOWORGEX 10
2492#define EMR_SETVIEWPORTEXTEX 11
2493#define EMR_SETVIEWPORTORGEX 12
2494#define EMR_SETBRUSHORGEX 13
2495#define EMR_EOF 14
2496#define EMR_SETPIXELV 15
2497#define EMR_SETMAPPERFLAGS 16
2498#define EMR_SETMAPMODE 17
2499#define EMR_SETBKMODE 18
2500#define EMR_SETPOLYFILLMODE 19
2501#define EMR_SETROP2 20
2502#define EMR_SETSTRETCHBLTMODE 21
2503#define EMR_SETTEXTALIGN 22
2504#define EMR_SETCOLORADJUSTMENT 23
2505#define EMR_SETTEXTCOLOR 24
2506#define EMR_SETBKCOLOR 25
2507#define EMR_OFFSETCLIPRGN 26
2508#define EMR_MOVETOEX 27
2509#define EMR_SETMETARGN 28
2510#define EMR_EXCLUDECLIPRECT 29
2511#define EMR_INTERSECTCLIPRECT 30
2512#define EMR_SCALEVIEWPORTEXTEX 31
2513#define EMR_SCALEWINDOWEXTEX 32
2514#define EMR_SAVEDC 33
2515#define EMR_RESTOREDC 34
2516#define EMR_SETWORLDTRANSFORM 35
2517#define EMR_MODIFYWORLDTRANSFORM 36
2518#define EMR_SELECTOBJECT 37
2519#define EMR_CREATEPEN 38
2520#define EMR_CREATEBRUSHINDIRECT 39
2521#define EMR_DELETEOBJECT 40
2522#define EMR_ANGLEARC 41
2523#define EMR_ELLIPSE 42
2524#define EMR_RECTANGLE 43
2525#define EMR_ROUNDRECT 44
2526#define EMR_ARC 45
2527#define EMR_CHORD 46
2528#define EMR_PIE 47
2529#define EMR_SELECTPALETTE 48
2530#define EMR_CREATEPALETTE 49
2531#define EMR_SETPALETTEENTRIES 50
2532#define EMR_RESIZEPALETTE 51
2533#define EMR_REALIZEPALETTE 52
2534#define EMR_EXTFLOODFILL 53
2535#define EMR_LINETO 54
2536#define EMR_ARCTO 55
2537#define EMR_POLYDRAW 56
2538#define EMR_SETARCDIRECTION 57
2539#define EMR_SETMITERLIMIT 58
2540#define EMR_BEGINPATH 59
2541#define EMR_ENDPATH 60
2542#define EMR_CLOSEFIGURE 61
2543#define EMR_FILLPATH 62
2544#define EMR_STROKEANDFILLPATH 63
2545#define EMR_STROKEPATH 64
2546#define EMR_FLATTENPATH 65
2547#define EMR_WIDENPATH 66
2548#define EMR_SELECTCLIPPATH 67
2549#define EMR_ABORTPATH 68
2550#define EMR_GDICOMMENT 70
2551#define EMR_FILLRGN 71
2552#define EMR_FRAMERGN 72
2553#define EMR_INVERTRGN 73
2554#define EMR_PAINTRGN 74
2555#define EMR_EXTSELECTCLIPRGN 75
2556#define EMR_BITBLT 76
2557#define EMR_STRETCHBLT 77
2558#define EMR_MASKBLT 78
2559#define EMR_PLGBLT 79
2560#define EMR_SETDIBITSTODEVICE 80
2561#define EMR_STRETCHDIBITS 81
2562#define EMR_EXTCREATEFONTINDIRECTW 82
2563#define EMR_EXTTEXTOUTA 83
2564#define EMR_EXTTEXTOUTW 84
2565#define EMR_POLYBEZIER16 85
2566#define EMR_POLYGON16 86
2567#define EMR_POLYLINE16 87
2568#define EMR_POLYBEZIERTO16 88
2569#define EMR_POLYLINETO16 89
2570#define EMR_POLYPOLYLINE16 90
2571#define EMR_POLYPOLYGON16 91
2572#define EMR_POLYDRAW16 92
2573#define EMR_CREATEMONOBRUSH 93
2574#define EMR_CREATEDIBPATTERNBRUSHPT 94
2575#define EMR_EXTCREATEPEN 95
2576#define EMR_POLYTEXTOUTA 96
2577#define EMR_POLYTEXTOUTW 97
2578#define EMR_SETICMMODE 98
2579#define EMR_CREATECOLORSPACE 99
2580#define EMR_SETCOLORSPACE 100
2581#define EMR_DELETECOLORSPACE 101
2582#define EMR_GLSRECORD 102
2583#define EMR_GLSBOUNDEDRECORD 103
2584#define EMR_PIXELFORMAT 104
2585
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002586#define EMR_MIN 1
2587#define EMR_MAX 104
2588
Veksler Michael1346a3c1998-12-15 11:15:35 +00002589#define ENHMETA_SIGNATURE 1179469088
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002590#define ENHMETA_STOCK_OBJECT 0x80000000
2591
2592#define GDICPMMENT_INDENTIFIER 0x43494447
2593#define GDICOMMENT_WINDOWS_METAFILE 0x80000000
2594#define GDICOMMENT_BEGINGROUP 0x80000001
2595#define GDICOMMENT_ENDGROUP 0x80000002
2596#define GDICOMMENT_MULTIFORMATS 0x80000003
2597#define EPS_SIGNATURE 0x46535045
Veksler Michael1346a3c1998-12-15 11:15:35 +00002598
2599#define CCHDEVICENAME 32
2600#define CCHFORMNAME 32
2601
2602typedef struct
2603{
2604 BYTE dmDeviceName[CCHDEVICENAME];
2605 WORD dmSpecVersion;
2606 WORD dmDriverVersion;
2607 WORD dmSize;
2608 WORD dmDriverExtra;
2609 DWORD dmFields;
Huw D M Daviese39b6761999-05-17 16:20:51 +00002610 union {
2611 struct {
2612 SHORT dmOrientation;
2613 SHORT dmPaperSize;
2614 SHORT dmPaperLength;
2615 SHORT dmPaperWidth;
Francois Gouget6c97e452000-11-10 22:33:45 +00002616 } DUMMYSTRUCTNAME1;
Huw D M Daviese39b6761999-05-17 16:20:51 +00002617 POINTL dmPosition;
Francois Gouget6c97e452000-11-10 22:33:45 +00002618 } DUMMYUNIONNAME1;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002619 SHORT dmScale;
2620 SHORT dmCopies;
2621 SHORT dmDefaultSource;
2622 SHORT dmPrintQuality;
2623 SHORT dmColor;
2624 SHORT dmDuplex;
2625 SHORT dmYResolution;
2626 SHORT dmTTOption;
2627 SHORT dmCollate;
Veksler Michael1346a3c1998-12-15 11:15:35 +00002628 BYTE dmFormName[CCHFORMNAME];
2629 WORD dmLogPixels;
2630 DWORD dmBitsPerPel;
2631 DWORD dmPelsWidth;
2632 DWORD dmPelsHeight;
2633 DWORD dmDisplayFlags;
2634 DWORD dmDisplayFrequency;
2635 DWORD dmICMMethod;
2636 DWORD dmICMIntent;
2637 DWORD dmMediaType;
2638 DWORD dmDitherType;
2639 DWORD dmReserved1;
2640 DWORD dmReserved2;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002641 DWORD dmPanningWidth;
2642 DWORD dmPanningHeight;
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +00002643} DEVMODEA, *PDEVMODEA, *LPDEVMODEA;
Veksler Michael1346a3c1998-12-15 11:15:35 +00002644
2645typedef struct
2646{
2647 WCHAR dmDeviceName[CCHDEVICENAME];
2648 WORD dmSpecVersion;
2649 WORD dmDriverVersion;
2650 WORD dmSize;
2651 WORD dmDriverExtra;
2652 DWORD dmFields;
Huw D M Daviese39b6761999-05-17 16:20:51 +00002653 union {
2654 struct {
2655 SHORT dmOrientation;
2656 SHORT dmPaperSize;
2657 SHORT dmPaperLength;
2658 SHORT dmPaperWidth;
Francois Gouget6c97e452000-11-10 22:33:45 +00002659 } DUMMYSTRUCTNAME1;
Huw D M Daviese39b6761999-05-17 16:20:51 +00002660 POINTL dmPosition;
Francois Gouget6c97e452000-11-10 22:33:45 +00002661 } DUMMYUNIONNAME1;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002662 SHORT dmScale;
2663 SHORT dmCopies;
2664 SHORT dmDefaultSource;
2665 SHORT dmPrintQuality;
2666 SHORT dmColor;
2667 SHORT dmDuplex;
2668 SHORT dmYResolution;
2669 SHORT dmTTOption;
2670 SHORT dmCollate;
Veksler Michael1346a3c1998-12-15 11:15:35 +00002671 WCHAR dmFormName[CCHFORMNAME];
2672 WORD dmLogPixels;
2673 DWORD dmBitsPerPel;
2674 DWORD dmPelsWidth;
2675 DWORD dmPelsHeight;
2676 DWORD dmDisplayFlags;
2677 DWORD dmDisplayFrequency;
2678 DWORD dmICMMethod;
2679 DWORD dmICMIntent;
2680 DWORD dmMediaType;
2681 DWORD dmDitherType;
2682 DWORD dmReserved1;
2683 DWORD dmReserved2;
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002684 DWORD dmPanningWidth;
2685 DWORD dmPanningHeight;
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +00002686} DEVMODEW, *PDEVMODEW, *LPDEVMODEW;
Veksler Michael1346a3c1998-12-15 11:15:35 +00002687
2688DECL_WINELIB_TYPE_AW(DEVMODE)
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +00002689DECL_WINELIB_TYPE_AW(PDEVMODE)
Veksler Michael1346a3c1998-12-15 11:15:35 +00002690DECL_WINELIB_TYPE_AW(LPDEVMODE)
2691
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002692#define DM_SPECVERSION 0x401
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002693#define DM_UPDATE 1
2694#define DM_COPY 2
2695#define DM_PROMPT 4
2696#define DM_MODIFY 8
2697
2698#define DM_IN_BUFFER DM_MODIFY
2699#define DM_IN_PROMPT DM_PROMPT
2700#define DM_OUT_BUFFER DM_COPY
2701#define DM_OUT_DEFAULT DM_UPDATE
2702
2703#define DM_ORIENTATION 0x00000001L
2704#define DM_PAPERSIZE 0x00000002L
2705#define DM_PAPERLENGTH 0x00000004L
2706#define DM_PAPERWIDTH 0x00000008L
2707#define DM_SCALE 0x00000010L
Huw D M Daviese39b6761999-05-17 16:20:51 +00002708#define DM_POSITION 0x00000020L
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002709#define DM_COPIES 0x00000100L
2710#define DM_DEFAULTSOURCE 0x00000200L
2711#define DM_PRINTQUALITY 0x00000400L
2712#define DM_COLOR 0x00000800L
2713#define DM_DUPLEX 0x00001000L
2714#define DM_YRESOLUTION 0x00002000L
2715#define DM_TTOPTION 0x00004000L
Huw D M Daviese39b6761999-05-17 16:20:51 +00002716#define DM_COLLATE 0x00008000L
2717#define DM_FORMNAME 0x00010000L
2718#define DM_LOGPIXELS 0x00020000L
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002719#define DM_BITSPERPEL 0x00040000L
2720#define DM_PELSWIDTH 0x00080000L
2721#define DM_PELSHEIGHT 0x00100000L
2722#define DM_DISPLAYFLAGS 0x00200000L
2723#define DM_DISPLAYFREQUENCY 0x00400000L
Huw D M Daviese39b6761999-05-17 16:20:51 +00002724#define DM_ICMMETHOD 0x00800000L
2725#define DM_ICMINTENT 0x01000000L
2726#define DM_MEDIATYPE 0x02000000L
2727#define DM_DITHERTYPE 0x04000000L
2728#define DM_PANNINGWIDTH 0x08000000L
2729#define DM_PANNINGHEIGHT 0x10000000L
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002730
2731#define DMORIENT_PORTRAIT 1
2732#define DMORIENT_LANDSCAPE 2
2733
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002734#define DMPAPER_FIRST DMPAPER_LETTER
2735#define DMPAPER_LETTER 1
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002736#define DMPAPER_LETTERSMALL 2
2737#define DMPAPER_TABLOID 3
2738#define DMPAPER_LEDGER 4
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002739#define DMPAPER_LEGAL 5
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002740#define DMPAPER_STATEMENT 6
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002741#define DMPAPER_EXECUTIVE 7
2742#define DMPAPER_A3 8
2743#define DMPAPER_A4 9
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002744#define DMPAPER_A4SMALL 10
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002745#define DMPAPER_A5 11
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002746#define DMPAPER_B4 12
2747#define DMPAPER_B5 13
2748#define DMPAPER_FOLIO 14
2749#define DMPAPER_QUARTO 15
2750#define DMPAPER_10X14 16
2751#define DMPAPER_11X17 17
2752#define DMPAPER_NOTE 18
2753#define DMPAPER_ENV_9 19
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002754#define DMPAPER_ENV_10 20
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002755#define DMPAPER_ENV_11 21
2756#define DMPAPER_ENV_12 22
2757#define DMPAPER_ENV_14 23
2758#define DMPAPER_CSHEET 24
2759#define DMPAPER_DSHEET 25
2760#define DMPAPER_ESHEET 26
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002761#define DMPAPER_ENV_DL 27
2762#define DMPAPER_ENV_C5 28
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002763#define DMPAPER_ENV_C3 29
2764#define DMPAPER_ENV_C4 30
2765#define DMPAPER_ENV_C6 31
2766#define DMPAPER_ENV_C65 32
2767#define DMPAPER_ENV_B4 33
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002768#define DMPAPER_ENV_B5 34
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002769#define DMPAPER_ENV_B6 35
2770#define DMPAPER_ENV_ITALY 36
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002771#define DMPAPER_ENV_MONARCH 37
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002772#define DMPAPER_ENV_PERSONAL 38
2773#define DMPAPER_FANFOLD_US 39
2774#define DMPAPER_FANFOLD_STD_GERMAN 40
2775#define DMPAPER_FANFOLD_LGL_GERMAN 41
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002776#define DMPAPER_ISO_B4 42
2777#define DMPAPER_JAPANESE_POSTCARD 43
2778#define DMPAPER_9X11 44
2779#define DMPAPER_10X11 45
2780#define DMPAPER_15X11 46
2781#define DMPAPER_ENV_INVITE 47
2782#define DMPAPER_RESERVED_48 48
2783#define DMPAPER_RESERVED_49 49
2784#define DMPAPER_LETTER_EXTRA 50
2785#define DMPAPER_LEGAL_EXTRA 51
2786#define DMPAPER_TABLOID_EXTRA 52
2787#define DMPAPER_A4_EXTRA 53
2788#define DMPAPER_LETTER_TRANSVERSE 54
2789#define DMPAPER_A4_TRANSVERSE 55
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002790#define DMPAPER_LETTER_EXTRA_TRANSVERSE 56
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002791#define DMPAPER_A_PLUS 57
2792#define DMPAPER_B_PLUS 58
2793#define DMPAPER_LETTER_PLUS 59
2794#define DMPAPER_A4_PLUS 60
2795#define DMPAPER_A5_TRANSVERSE 61
2796#define DMPAPER_B5_TRANSVERSE 62
2797#define DMPAPER_A3_EXTRA 63
2798#define DMPAPER_A5_EXTRA 64
2799#define DMPAPER_B5_EXTRA 65
2800#define DMPAPER_A2 66
2801#define DMPAPER_A3_TRANSVERSE 67
Huw D M Davies0f184bf1999-07-27 16:09:40 +00002802#define DMPAPER_A3_EXTRA_TRANSVERSE 68
2803#define DMPAPER_DBL_JAPANESE_POSTCARD 69
Huw D M Davies6dd35691999-09-10 14:36:49 +00002804#define DMPAPER_A6 70
2805#define DMPAPER_JENV_KAKU2 71
2806#define DMPAPER_JENV_KAKU3 72
2807#define DMPAPER_JENV_CHOU3 73
2808#define DMPAPER_JENV_CHOU4 74
2809#define DMPAPER_LETTER_ROTATED 75
2810#define DMPAPER_A3_ROTATED 76
2811#define DMPAPER_A4_ROTATED 77
2812#define DMPAPER_A5_ROTATED 78
2813#define DMPAPER_B4_JIS_ROTATED 79
2814#define DMPAPER_B5_JIS_ROTATED 80
Huw D M Davies0f184bf1999-07-27 16:09:40 +00002815#define DMPAPER_JAPANESE_POSTCARD_ROTATED 81
2816#define DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED 82
Huw D M Davies6dd35691999-09-10 14:36:49 +00002817#define DMPAPER_A6_ROTATED 83
2818#define DMPAPER_JENV_KAKU2_ROTATED 84
2819#define DMPAPER_JENV_KAKU3_ROTATED 85
2820#define DMPAPER_JENV_CHOU3_ROTATED 86
2821#define DMPAPER_JENV_CHOU4_ROTATED 87
2822#define DMPAPER_B6_JIS 88
2823#define DMPAPER_B6_JIS_ROTATED 89
2824#define DMPAPER_12X11 90
2825#define DMPAPER_JENV_YOU4 91
2826#define DMPAPER_JENV_YOU4_ROTATED 92
2827#define DMPAPER_P16K 93
2828#define DMPAPER_P32K 94
2829#define DMPAPER_P32KBIG 95
2830#define DMPAPER_PENV_1 96
2831#define DMPAPER_PENV_2 97
2832#define DMPAPER_PENV_3 98
2833#define DMPAPER_PENV_4 99
2834#define DMPAPER_PENV_5 100
2835#define DMPAPER_PENV_6 101
2836#define DMPAPER_PENV_7 102
2837#define DMPAPER_PENV_8 103
2838#define DMPAPER_PENV_9 104
2839#define DMPAPER_PENV_10 105
2840#define DMPAPER_P16K_ROTATED 106
2841#define DMPAPER_P32K_ROTATED 107
2842#define DMPAPER_P32KBIG_ROTATED 108
2843#define DMPAPER_PENV_1_ROTATED 109
2844#define DMPAPER_PENV_2_ROTATED 110
2845#define DMPAPER_PENV_3_ROTATED 111
2846#define DMPAPER_PENV_4_ROTATED 112
2847#define DMPAPER_PENV_5_ROTATED 113
2848#define DMPAPER_PENV_6_ROTATED 114
2849#define DMPAPER_PENV_7_ROTATED 115
2850#define DMPAPER_PENV_8_ROTATED 116
2851#define DMPAPER_PENV_9_ROTATED 117
2852#define DMPAPER_PENV_10_ROTATED 118
2853
2854#define DMPAPER_LAST DMPAPER_PENV_10_ROTATED
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002855#define DMPAPER_USER 256
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002856
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002857#define DMBIN_FIRST DMBIN_UPPER
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002858#define DMBIN_UPPER 1
Huw D M Davies6dd35691999-09-10 14:36:49 +00002859#define DMBIN_ONLYONE 1
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002860#define DMBIN_LOWER 2
2861#define DMBIN_MIDDLE 3
2862#define DMBIN_MANUAL 4
2863#define DMBIN_ENVELOPE 5
2864#define DMBIN_ENVMANUAL 6
2865#define DMBIN_AUTO 7
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002866#define DMBIN_TRACTOR 8
2867#define DMBIN_SMALLFMT 9
2868#define DMBIN_LARGEFMT 10
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002869#define DMBIN_LARGECAPACITY 11
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002870#define DMBIN_CASSETTE 14
2871#define DMBIN_FORMSOURCE 15
2872#define DMBIN_LAST DMBIN_FORMSOURCE
2873#define DMBIN_USER 256
2874
2875#define DMRES_DRAFT (-1)
2876#define DMRES_LOW (-2)
2877#define DMRES_MEDIUM (-3)
2878#define DMRES_HIGH (-4)
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002879
2880#define DMCOLOR_MONOCHROME 1
2881#define DMCOLOR_COLOR 2
2882
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002883#define DMDUP_SIMPLEX 1
2884#define DMDUP_VERTICAL 2
2885#define DMDUP_HORIZONTAL 3
2886
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002887#define DMTT_BITMAP 1
2888#define DMTT_DOWNLOAD 2
2889#define DMTT_SUBDEV 3
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002890#define DMTT_DOWNLOAD_OUTLINE 4
Huw D M Daviesed6d4591999-03-28 15:20:00 +00002891
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002892#define DMCOLLATE_FALSE 0
2893#define DMCOLLATE_TRUE 1
2894
2895#define DMICMMETHOD_NONE 1
2896#define DMICMMETHOD_SYSTEM 2
2897#define DMICMMETHOD_DRIVER 3
2898#define DMICMMETHOD_DEVICE 4
2899#define DMICMMETHOD_USER 256
2900
2901#define DMICM_SATURATE 1
2902#define DMICM_CONTRAST 2
2903#define DMICM_COLORMETRIC 3
2904#define DMICM_USER 256
2905
2906#define DMMEDIA_STANDARD 1
2907#define DMMEDIA_TRANSPARENCY 2
2908#define DMMEDIA_GLOSSY 3
2909#define DMMEDIA_USER 256
2910
2911#define DMDITHER_NONE 1
2912#define DMDITHER_COARSE 2
2913#define DMDITHER_FINE 3
2914#define DMDITHER_LINEART 4
2915#define DMDITHER_GRAYSCALE 5
2916#define DMDITHER_USER 256
Veksler Michael1346a3c1998-12-15 11:15:35 +00002917
2918typedef struct
2919{
Alexandre Julliarda3960291999-02-26 11:11:13 +00002920 INT cbSize;
Veksler Michael1346a3c1998-12-15 11:15:35 +00002921 LPCSTR lpszDocName;
2922 LPCSTR lpszOutput;
2923 LPCSTR lpszDatatype;
2924 DWORD fwType;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002925} DOCINFOA, *LPDOCINFOA;
Veksler Michael1346a3c1998-12-15 11:15:35 +00002926
2927typedef struct
2928{
Alexandre Julliarda3960291999-02-26 11:11:13 +00002929 INT cbSize;
Veksler Michael1346a3c1998-12-15 11:15:35 +00002930 LPCWSTR lpszDocName;
2931 LPCWSTR lpszOutput;
2932 LPCWSTR lpszDatatype;
2933 DWORD fwType;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002934} DOCINFOW, *LPDOCINFOW;
Veksler Michael1346a3c1998-12-15 11:15:35 +00002935
2936DECL_WINELIB_TYPE_AW(DOCINFO)
2937DECL_WINELIB_TYPE_AW(LPDOCINFO)
2938
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002939#define DI_APPBANDING 0x0001
Veksler Michael1346a3c1998-12-15 11:15:35 +00002940
Brad Pepers0bdff361999-02-09 15:37:16 +00002941/* Flags for PolyDraw and GetPath */
2942#define PT_CLOSEFIGURE 0x0001
2943#define PT_LINETO 0x0002
2944#define PT_BEZIERTO 0x0004
2945#define PT_MOVETO 0x0006
2946
Veksler Michael1346a3c1998-12-15 11:15:35 +00002947#define RDH_RECTANGLES 1
2948
2949typedef struct _RGNDATAHEADER {
2950 DWORD dwSize;
2951 DWORD iType;
2952 DWORD nCount;
2953 DWORD nRgnSize;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002954 RECT rcBound;
Francois Gouget6c97e452000-11-10 22:33:45 +00002955} RGNDATAHEADER,*PRGNDATAHEADER;
Veksler Michael1346a3c1998-12-15 11:15:35 +00002956
2957typedef struct _RGNDATA {
2958 RGNDATAHEADER rdh;
2959 char Buffer[1];
2960} RGNDATA,*PRGNDATA,*LPRGNDATA;
2961
Francois Gougetae41e8c2000-06-11 20:07:58 +00002962typedef BOOL CALLBACK (*ABORTPROC)(HDC, INT);
Francois Gouget815d3201998-12-26 11:57:38 +00002963
Marcus Meissner8388f671999-09-19 12:09:23 +00002964typedef struct {
2965 DWORD cb;
2966 BYTE DeviceName[32];
2967 BYTE DeviceString[128];
2968 DWORD StateFlags;
2969} DISPLAY_DEVICEA,*PDISPLAY_DEVICEA,*LPDISPLAY_DEVICEA;
2970
2971typedef struct {
2972 DWORD cb;
2973 WCHAR DeviceName[32];
2974 WCHAR DeviceString[128];
2975 DWORD StateFlags;
2976} DISPLAY_DEVICEW,*PDISPLAY_DEVICEW,*LPDISPLAY_DEVICEW;
Patrik Stridvall0ee98cc2000-02-26 13:17:55 +00002977DECL_WINELIB_TYPE_AW(DISPLAY_DEVICE)
2978DECL_WINELIB_TYPE_AW(PDISPLAY_DEVICE)
2979DECL_WINELIB_TYPE_AW(LPDISPLAY_DEVICE)
Marcus Meissner8388f671999-09-19 12:09:23 +00002980
2981/* DISPLAY_DEVICE.StateFlags (?)*/
2982#define DISPLAY_DEVICE_ATTACHED_TO_DESKTOP 0x00000001
2983#define DISPLAY_DEVICE_MULTI_DRIVER 0x00000002
2984#define DISPLAY_DEVICE_PRIMARY_DEVICE 0x00000004
2985#define DISPLAY_DEVICE_MIRRORING_DRIVER 0x00000008
2986#define DISPLAY_DEVICE_VGA_COMPATIBLE 0x00000010
2987
Jim Aston10141fe1999-04-25 12:31:20 +00002988#include "poppack.h"
Veksler Michael1346a3c1998-12-15 11:15:35 +00002989
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002990INT WINAPI AbortDoc(HDC);
2991BOOL WINAPI AbortPath(HDC);
2992INT WINAPI AddFontResourceA(LPCSTR);
2993INT WINAPI AddFontResourceW(LPCWSTR);
2994#define AddFontResource WINELIB_NAME_AW(AddFontResource)
Alexandre Julliarda3960291999-02-26 11:11:13 +00002995BOOL WINAPI AngleArc(HDC, INT, INT, DWORD, FLOAT, FLOAT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002996BOOL WINAPI AnimatePalette(HPALETTE,UINT,UINT,const PALETTEENTRY*);
2997BOOL WINAPI Arc(HDC,INT,INT,INT,INT,INT,INT,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00002998BOOL WINAPI ArcTo(HDC, INT, INT, INT, INT, INT, INT, INT, INT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00002999BOOL WINAPI BeginPath(HDC);
3000BOOL WINAPI BitBlt(HDC,INT,INT,INT,INT,HDC,INT,INT,DWORD);
Patrik Stridvall98fde732000-03-24 20:43:33 +00003001INT WINAPI ChoosePixelFormat(HDC,const LPPIXELFORMATDESCRIPTOR);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003002BOOL WINAPI Chord(HDC,INT,INT,INT,INT,INT,INT,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003003HENHMETAFILE WINAPI CloseEnhMetaFile(HDC);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003004BOOL WINAPI CloseFigure(HDC);
3005HMETAFILE WINAPI CloseMetaFile(HDC);
3006INT WINAPI CombineRgn(HRGN,HRGN,HRGN,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003007BOOL WINAPI CombineTransform(LPXFORM,const XFORM *,const XFORM *);
3008HENHMETAFILE WINAPI CopyEnhMetaFileA(HENHMETAFILE,LPCSTR);
3009HENHMETAFILE WINAPI CopyEnhMetaFileW(HENHMETAFILE,LPCWSTR);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003010#define CopyEnhMetaFile WINELIB_NAME_AW(CopyEnhMetaFile)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003011HMETAFILE WINAPI CopyMetaFileA(HMETAFILE,LPCSTR);
3012HMETAFILE WINAPI CopyMetaFileW(HMETAFILE,LPCWSTR);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003013#define CopyMetaFile WINELIB_NAME_AW(CopyMetaFile)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003014HBITMAP WINAPI CreateBitmap(INT,INT,UINT,UINT,LPCVOID);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003015HBITMAP WINAPI CreateBitmapIndirect(const BITMAP*);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003016HBRUSH WINAPI CreateBrushIndirect(const LOGBRUSH*);
Peter Hunnisettf2b84922000-01-15 22:17:49 +00003017HCOLORSPACE WINAPI CreateColorSpaceA(LPLOGCOLORSPACEA);
3018HCOLORSPACE WINAPI CreateColorSpaceW(LPLOGCOLORSPACEW);
3019#define CreateColorSpace WINELIB_NAME_AW(CreateColorSpace)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003020HBITMAP WINAPI CreateCompatibleBitmap(HDC,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003021HDC WINAPI CreateCompatibleDC(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003022HDC WINAPI CreateDCA(LPCSTR,LPCSTR,LPCSTR,const DEVMODEA*);
3023HDC WINAPI CreateDCW(LPCWSTR,LPCWSTR,LPCWSTR,const DEVMODEW*);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003024#define CreateDC WINELIB_NAME_AW(CreateDC)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003025HBITMAP WINAPI CreateDIBitmap(HDC,const BITMAPINFOHEADER*,DWORD,
3026 LPCVOID,const BITMAPINFO*,UINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003027HBRUSH WINAPI CreateDIBPatternBrush(HGLOBAL,UINT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003028HBRUSH WINAPI CreateDIBPatternBrushPt(const void*,UINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003029HBITMAP WINAPI CreateDIBSection (HDC, BITMAPINFO *, UINT,
3030 LPVOID *, HANDLE, DWORD offset);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003031HBITMAP WINAPI CreateDiscardableBitmap(HDC,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003032HRGN WINAPI CreateEllipticRgn(INT,INT,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003033HRGN WINAPI CreateEllipticRgnIndirect(const RECT *);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003034HDC WINAPI CreateEnhMetaFileA(HDC,LPCSTR,const RECT*,LPCSTR);
3035HDC WINAPI CreateEnhMetaFileW(HDC,LPCWSTR,const RECT*,LPCWSTR);
3036#define CreateEnhMetaFile WINELIB_NAME_AW(CreateEnhMetaFile)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003037HFONT WINAPI CreateFontA(INT,INT,INT,INT,INT,DWORD,DWORD,
Veksler Michael1346a3c1998-12-15 11:15:35 +00003038 DWORD,DWORD,DWORD,DWORD,DWORD,DWORD,LPCSTR);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003039HFONT WINAPI CreateFontW(INT,INT,INT,INT,INT,DWORD,DWORD,
Veksler Michael1346a3c1998-12-15 11:15:35 +00003040 DWORD,DWORD,DWORD,DWORD,DWORD,DWORD,LPCWSTR);
3041#define CreateFont WINELIB_NAME_AW(CreateFont)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003042HFONT WINAPI CreateFontIndirectA(const LOGFONTA*);
3043HFONT WINAPI CreateFontIndirectW(const LOGFONTW*);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003044#define CreateFontIndirect WINELIB_NAME_AW(CreateFontIndirect)
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003045HPALETTE WINAPI CreateHalftonePalette(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003046HBRUSH WINAPI CreateHatchBrush(INT,COLORREF);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003047HDC WINAPI CreateICA(LPCSTR,LPCSTR,LPCSTR,const DEVMODEA*);
3048HDC WINAPI CreateICW(LPCWSTR,LPCWSTR,LPCWSTR,const DEVMODEW*);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003049#define CreateIC WINELIB_NAME_AW(CreateIC)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003050HDC WINAPI CreateMetaFileA(LPCSTR);
3051HDC WINAPI CreateMetaFileW(LPCWSTR);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003052#define CreateMetaFile WINELIB_NAME_AW(CreateMetaFile)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003053HPALETTE WINAPI CreatePalette(const LOGPALETTE*);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003054HBRUSH WINAPI CreatePatternBrush(HBITMAP);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003055HPEN WINAPI CreatePen(INT,INT,COLORREF);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003056HPEN WINAPI CreatePenIndirect(const LOGPEN*);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003057HRGN WINAPI CreatePolyPolygonRgn(const POINT*,const INT*,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003058HRGN WINAPI CreatePolygonRgn(const POINT*,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003059HRGN WINAPI CreateRectRgn(INT,INT,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003060HRGN WINAPI CreateRectRgnIndirect(const RECT*);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003061HRGN WINAPI CreateRoundRectRgn(INT,INT,INT,INT,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003062BOOL WINAPI CreateScalableFontResourceA(DWORD,LPCSTR,LPCSTR,LPCSTR);
3063BOOL WINAPI CreateScalableFontResourceW(DWORD,LPCWSTR,LPCWSTR,LPCWSTR);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003064#define CreateScalableFontResource WINELIB_NAME_AW(CreateScalableFontResource)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003065HBRUSH WINAPI CreateSolidBrush(COLORREF);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003066BOOL WINAPI DPtoLP(HDC,LPPOINT,INT);
Peter Hunnisettf2b84922000-01-15 22:17:49 +00003067BOOL WINAPI DeleteColorSpace(HCOLORSPACE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003068BOOL WINAPI DeleteDC(HDC);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003069BOOL WINAPI DeleteEnhMetaFile(HENHMETAFILE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003070BOOL WINAPI DeleteMetaFile(HMETAFILE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003071BOOL WINAPI DeleteObject(HGDIOBJ);
3072INT WINAPI DescribePixelFormat(HDC,int,UINT,
Veksler Michael1346a3c1998-12-15 11:15:35 +00003073 LPPIXELFORMATDESCRIPTOR);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003074INT WINAPI DrawEscape(HDC,INT,INT,LPCSTR);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003075BOOL WINAPI Ellipse(HDC,INT,INT,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003076INT WINAPI EndDoc(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003077BOOL WINAPI EndPath(HDC);
Huw D M Davies280aeb92000-03-30 20:22:41 +00003078BOOL WINAPI EnumEnhMetaFile(HDC,HENHMETAFILE,ENHMFENUMPROC,LPVOID,const RECT*);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003079INT WINAPI EnumFontFamiliesA(HDC,LPCSTR,FONTENUMPROCA,LPARAM);
3080INT WINAPI EnumFontFamiliesW(HDC,LPCWSTR,FONTENUMPROCW,LPARAM);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003081#define EnumFontFamilies WINELIB_NAME_AW(EnumFontFamilies)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003082INT WINAPI EnumFontFamiliesExA(HDC,LPLOGFONTA,FONTENUMPROCEXA,LPARAM,DWORD);
3083INT WINAPI EnumFontFamiliesExW(HDC,LPLOGFONTW,FONTENUMPROCEXW,LPARAM,DWORD);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003084#define EnumFontFamiliesEx WINELIB_NAME_AW(EnumFontFamiliesEx)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003085INT WINAPI EnumFontsA(HDC,LPCSTR,FONTENUMPROCA,LPARAM);
3086INT WINAPI EnumFontsW(HDC,LPCWSTR,FONTENUMPROCW,LPARAM);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003087#define EnumFonts WINELIB_NAME_AW(EnumFonts)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003088BOOL WINAPI EnumMetaFile(HDC,HMETAFILE,MFENUMPROC,LPARAM);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003089INT WINAPI EnumObjects(HDC,INT,GOBJENUMPROC,LPARAM);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003090BOOL WINAPI EqualRgn(HRGN,HRGN);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003091INT WINAPI Escape(HDC,INT,INT,LPCSTR,LPVOID);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003092INT WINAPI ExcludeClipRect(HDC,INT,INT,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003093HPEN WINAPI ExtCreatePen(DWORD,DWORD,const LOGBRUSH*,DWORD,const DWORD*);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003094HRGN WINAPI ExtCreateRegion(const XFORM*,DWORD,const RGNDATA*);
3095INT WINAPI ExtEscape(HDC,INT,INT,LPCSTR,INT,LPSTR);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003096BOOL WINAPI ExtFloodFill(HDC,INT,INT,COLORREF,UINT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003097INT WINAPI ExtSelectClipRgn(HDC,HRGN,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003098BOOL WINAPI ExtTextOutA(HDC,INT,INT,UINT,const RECT*,
3099 LPCSTR,UINT,const INT*);
3100BOOL WINAPI ExtTextOutW(HDC,INT,INT,UINT,const RECT*,
3101 LPCWSTR,UINT,const INT*);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003102#define ExtTextOut WINELIB_NAME_AW(ExtTextOut)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003103BOOL WINAPI FillPath(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003104BOOL WINAPI FillRgn(HDC,HRGN,HBRUSH);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003105BOOL WINAPI FixBrushOrgEx(HDC,INT,INT,LPPOINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003106BOOL WINAPI FlattenPath(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003107BOOL WINAPI FloodFill(HDC,INT,INT,COLORREF);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003108BOOL WINAPI FrameRgn(HDC,HRGN,HBRUSH,INT,INT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003109BOOL WINAPI GdiComment(HDC,UINT,const BYTE *);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003110INT WINAPI GetArcDirection(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003111BOOL WINAPI GetAspectRatioFilterEx(HDC,LPSIZE);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003112LONG WINAPI GetBitmapBits(HBITMAP,LONG,LPVOID);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003113BOOL WINAPI GetBitmapDimensionEx(HBITMAP,LPSIZE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003114BOOL WINAPI GetBrushOrgEx(HDC,LPPOINT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003115COLORREF WINAPI GetBkColor(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003116INT WINAPI GetBkMode(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003117UINT WINAPI GetBoundsRect(HDC,LPRECT,UINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003118BOOL WINAPI GetCharABCWidthsA(HDC,UINT,UINT,LPABC);
3119BOOL WINAPI GetCharABCWidthsW(HDC,UINT,UINT,LPABC);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003120#define GetCharABCWidths WINELIB_NAME_AW(GetCharABCWidths)
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003121BOOL WINAPI GetCharABCWidthsFloatA(HDC,UINT,UINT,LPABCFLOAT);
3122BOOL WINAPI GetCharABCWidthsFloatW(HDC,UINT,UINT,LPABCFLOAT);
3123#define GetCharABCWidthsFloat WINELIB_NAME_AW(GetCharABCWidthsFloat)
3124DWORD WINAPI GetCharacterPlacementA(HDC,LPCSTR,INT,INT,GCP_RESULTSA*,DWORD);
3125DWORD WINAPI GetCharacterPlacementW(HDC,LPCWSTR,INT,INT,GCP_RESULTSW*,DWORD);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003126#define GetCharacterPlacement WINELIB_NAME_AW(GetCharacterPlacement)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003127BOOL WINAPI GetCharWidth32A(HDC,UINT,UINT,LPINT);
3128BOOL WINAPI GetCharWidth32W(HDC,UINT,UINT,LPINT);
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +00003129#define GetCharWidthA GetCharWidth32A
3130#define GetCharWidthW GetCharWidth32W
3131#define GetCharWidth32 WINELIB_NAME_AW(GetCharWidth32)
Veksler Michael1346a3c1998-12-15 11:15:35 +00003132#define GetCharWidth WINELIB_NAME_AW(GetCharWidth)
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003133BOOL WINAPI GetCharWidthFloatA(HDC,UINT,UINT,PFLOAT);
3134BOOL WINAPI GetCharWidthFloatW(HDC,UINT,UINT,PFLOAT);
3135#define GetCharWidthFloat WINELIB_NAME_AW(GetCharWidthFloat)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003136INT WINAPI GetClipBox(HDC,LPRECT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003137INT WINAPI GetClipRgn(HDC,HRGN);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003138BOOL WINAPI GetColorAdjustment(HDC, LPCOLORADJUSTMENT);
3139HANDLE WINAPI GetCurrentObject(HDC,UINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003140BOOL WINAPI GetCurrentPositionEx(HDC,LPPOINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003141INT WINAPI GetDeviceCaps(HDC,INT);
Francois Gougetb0656972000-12-26 00:00:46 +00003142COLORREF WINAPI GetDCBrushColor(HDC);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003143BOOL WINAPI GetDCOrgEx(HDC,LPPOINT);
Francois Gougetb0656972000-12-26 00:00:46 +00003144COLORREF WINAPI GetDCPenColor(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003145UINT WINAPI GetDIBColorTable(HDC,UINT,UINT,RGBQUAD*);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003146INT WINAPI GetDIBits(HDC,HBITMAP,UINT,UINT,LPVOID,LPBITMAPINFO,UINT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003147HENHMETAFILE WINAPI GetEnhMetaFileA(LPCSTR);
3148HENHMETAFILE WINAPI GetEnhMetaFileW(LPCWSTR);
3149#define GetEnhMetaFile WINELIB_NAME_AW(GetEnhMetaFile)
3150UINT WINAPI GetEnhMetaFileBits(HENHMETAFILE,UINT,LPBYTE);
Francois Gougetd55ccfd2000-10-12 23:14:52 +00003151UINT WINAPI GetEnhMetaFileDescriptionA(HENHMETAFILE,UINT,LPSTR);
3152UINT WINAPI GetEnhMetaFileDescriptionW(HENHMETAFILE,UINT,LPWSTR);
3153#define GetEnhMetaFileDescription WINELIB_NAME_AW(GetEnhMetaFileDescription)
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003154UINT WINAPI GetEnhMetaFileHeader(HENHMETAFILE,UINT,LPENHMETAHEADER);
3155UINT WINAPI GetEnhMetaFilePaletteEntries(HENHMETAFILE,UINT,LPPALETTEENTRY);
3156DWORD WINAPI GetFontData(HDC,DWORD,DWORD,LPVOID,DWORD);
3157DWORD WINAPI GetFontLanguageInfo(HDC);
3158DWORD WINAPI GetGlyphOutlineA(HDC,UINT,UINT,LPGLYPHMETRICS,DWORD,LPVOID,const MAT2*);
3159DWORD WINAPI GetGlyphOutlineW(HDC,UINT,UINT,LPGLYPHMETRICS,DWORD,LPVOID,const MAT2*);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003160#define GetGlyphOutline WINELIB_NAME_AW(GetGlyphOutline)
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003161INT WINAPI GetGraphicsMode(HDC);
3162DWORD WINAPI GetKerningPairsA(HDC,DWORD,LPKERNINGPAIR);
3163DWORD WINAPI GetKerningPairsW(HDC,DWORD,LPKERNINGPAIR);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003164#define GetKerningPairs WINELIB_NAME_AW(GetKerningPairs)
Huw D M Daviesf64e0d71999-11-21 00:49:50 +00003165DWORD WINAPI GetLayout(HDC);
François Gouget441f8742000-12-29 03:43:43 +00003166BOOL WINAPI GetLogColorSpaceA(HCOLORSPACE,LPLOGCOLORSPACEA,DWORD);
3167BOOL WINAPI GetLogColorSpaceW(HCOLORSPACE,LPLOGCOLORSPACEW,DWORD);
3168#define GetLogColorSpace WINELIB_NAME_AW(GetLogColorSpace)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003169INT WINAPI GetMapMode(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003170HMETAFILE WINAPI GetMetaFileA(LPCSTR);
3171HMETAFILE WINAPI GetMetaFileW(LPCWSTR);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003172#define GetMetaFile WINELIB_NAME_AW(GetMetaFile)
Peter Hunnisett0cdc4d91999-12-11 23:18:10 +00003173UINT WINAPI GetMetaFileBitsEx(HMETAFILE,UINT,LPVOID);
3174INT WINAPI GetMetaRgn(HDC,HRGN);
3175BOOL WINAPI GetMiterLimit(HDC, PFLOAT);
3176DWORD WINAPI GetNearestColor(HDC,DWORD);
3177UINT WINAPI GetNearestPaletteIndex(HPALETTE,COLORREF);
3178INT WINAPI GetObjectA(HANDLE,INT,LPVOID);
3179INT WINAPI GetObjectW(HANDLE,INT,LPVOID);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003180#define GetObject WINELIB_NAME_AW(GetObject)
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003181DWORD WINAPI GetObjectType(HANDLE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003182UINT WINAPI GetOutlineTextMetricsA(HDC,UINT,LPOUTLINETEXTMETRICA);
3183UINT WINAPI GetOutlineTextMetricsW(HDC,UINT,LPOUTLINETEXTMETRICW);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003184#define GetOutlineTextMetrics WINELIB_NAME_AW(GetOutlineTextMetrics)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003185UINT WINAPI GetPaletteEntries(HPALETTE,UINT,UINT,LPPALETTEENTRY);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003186INT WINAPI GetPath(HDC,LPPOINT,LPBYTE,INT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003187COLORREF WINAPI GetPixel(HDC,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003188INT WINAPI GetPixelFormat(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003189INT WINAPI GetPolyFillMode(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003190BOOL WINAPI GetRasterizerCaps(LPRASTERIZER_STATUS,UINT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003191DWORD WINAPI GetRegionData(HRGN,DWORD,LPRGNDATA);
Patrik Stridvalle4174d52000-05-18 00:51:52 +00003192INT WINAPI GetRelAbs(HDC,DWORD);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003193INT WINAPI GetRgnBox(HRGN,LPRECT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003194INT WINAPI GetROP2(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003195HGDIOBJ WINAPI GetStockObject(INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003196INT WINAPI GetStretchBltMode(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003197UINT WINAPI GetSystemPaletteEntries(HDC,UINT,UINT,LPPALETTEENTRY);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003198UINT WINAPI GetSystemPaletteUse(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003199UINT WINAPI GetTextAlign(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003200INT WINAPI GetTextCharacterExtra(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003201UINT WINAPI GetTextCharset(HDC);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003202UINT WINAPI GetTextCharsetInfo(HDC,LPFONTSIGNATURE,DWORD);
3203COLORREF WINAPI GetTextColor(HDC);
3204BOOL WINAPI GetTextExtentExPointA(HDC,LPCSTR,INT,INT,
3205 LPINT,LPINT,LPSIZE);
3206BOOL WINAPI GetTextExtentExPointW(HDC,LPCWSTR,INT,INT,
3207 LPINT,LPINT,LPSIZE);
3208BOOL WINAPI GetTextExtentPointA(HDC,LPCSTR,INT,LPSIZE);
3209BOOL WINAPI GetTextExtentPointW(HDC,LPCWSTR,INT,LPSIZE);
Francois Gouget7ae72f51999-03-13 18:19:29 +00003210#define GetTextExtentPoint WINELIB_NAME_AW(GetTextExtentPoint)
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003211BOOL WINAPI GetTextExtentPoint32A(HDC,LPCSTR,INT,LPSIZE);
3212BOOL WINAPI GetTextExtentPoint32W(HDC,LPCWSTR,INT,LPSIZE);
Francois Gouget7ae72f51999-03-13 18:19:29 +00003213#define GetTextExtentPoint32 WINELIB_NAME_AW(GetTextExtentPoint32)
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003214#define GetTextExtentExPoint WINELIB_NAME_AW(GetTextExtentExPoint)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003215INT WINAPI GetTextFaceA(HDC,INT,LPSTR);
3216INT WINAPI GetTextFaceW(HDC,INT,LPWSTR);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003217#define GetTextFace WINELIB_NAME_AW(GetTextFace)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003218BOOL WINAPI GetTextMetricsA(HDC,LPTEXTMETRICA);
3219BOOL WINAPI GetTextMetricsW(HDC,LPTEXTMETRICW);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003220#define GetTextMetrics WINELIB_NAME_AW(GetTextMetrics)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003221BOOL WINAPI GetViewportExtEx(HDC,LPSIZE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003222BOOL WINAPI GetViewportOrgEx(HDC,LPPOINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003223BOOL WINAPI GetWindowExtEx(HDC,LPSIZE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003224BOOL WINAPI GetWindowOrgEx(HDC,LPPOINT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003225BOOL WINAPI GetWorldTransform(HDC,LPXFORM);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003226INT WINAPI IntersectClipRect(HDC,INT,INT,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003227BOOL WINAPI InvertRgn(HDC,HRGN);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003228BOOL WINAPI LineDDA(INT,INT,INT,INT,LINEDDAPROC,LPARAM);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003229BOOL WINAPI LineTo(HDC,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003230BOOL WINAPI LPtoDP(HDC,LPPOINT,INT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003231BOOL WINAPI MaskBlt(HDC,INT,INT,INT,INT,HDC,INT,INT,HBITMAP,INT,INT,DWORD);
3232BOOL WINAPI ModifyWorldTransform(HDC,const XFORM *, DWORD);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003233BOOL WINAPI MoveToEx(HDC,INT,INT,LPPOINT);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003234/* FIXME This is defined in kernel32.spec !?*/
Alexandre Julliarda3960291999-02-26 11:11:13 +00003235INT WINAPI MulDiv(INT,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003236INT WINAPI OffsetClipRgn(HDC,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003237INT WINAPI OffsetRgn(HRGN,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003238BOOL WINAPI OffsetViewportOrgEx(HDC,INT,INT,LPPOINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003239BOOL WINAPI OffsetWindowOrgEx(HDC,INT,INT,LPPOINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003240BOOL WINAPI PaintRgn(HDC,HRGN);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003241BOOL WINAPI PatBlt(HDC,INT,INT,INT,INT,DWORD);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003242HRGN WINAPI PathToRegion(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003243BOOL WINAPI Pie(HDC,INT,INT,INT,INT,INT,INT,INT,INT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003244BOOL WINAPI PlayEnhMetaFile(HDC,HENHMETAFILE,const RECT*);
3245BOOL WINAPI PlayEnhMetaFileRecord(HDC,LPHANDLETABLE,const ENHMETARECORD*,UINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003246BOOL WINAPI PlayMetaFile(HDC,HMETAFILE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003247BOOL WINAPI PlayMetaFileRecord(HDC,LPHANDLETABLE,LPMETARECORD,UINT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003248BOOL WINAPI PlgBlt(HDC,const POINT*,HDC,INT,INT,INT,INT,HBITMAP,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003249BOOL WINAPI PolyBezier(HDC,const POINT*,DWORD);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003250BOOL WINAPI PolyBezierTo(HDC,const POINT*,DWORD);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003251BOOL WINAPI PolyDraw(HDC,const POINT*,const BYTE*,DWORD);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003252BOOL WINAPI PolyPolygon(HDC,const POINT*,const INT*,UINT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003253BOOL WINAPI PolyPolyline(HDC,const POINT*,const DWORD*,DWORD);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003254BOOL WINAPI Polygon(HDC,const POINT*,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003255BOOL WINAPI Polyline(HDC,const POINT*,INT);
3256BOOL WINAPI PolylineTo(HDC,const POINT*,DWORD);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003257BOOL WINAPI PtInRegion(HRGN,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003258BOOL WINAPI PtVisible(HDC,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003259UINT WINAPI RealizePalette(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003260BOOL WINAPI Rectangle(HDC,INT,INT,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003261BOOL WINAPI RectInRegion(HRGN,const RECT *);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003262BOOL WINAPI RectVisible(HDC,const RECT*);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003263BOOL WINAPI RemoveFontResourceA(LPCSTR);
3264BOOL WINAPI RemoveFontResourceW(LPCWSTR);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003265#define RemoveFontResource WINELIB_NAME_AW(RemoveFontResource)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003266HDC WINAPI ResetDCA(HDC,const DEVMODEA *);
3267HDC WINAPI ResetDCW(HDC,const DEVMODEW *);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003268#define ResetDC WINELIB_NAME_AW(ResetDC)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003269BOOL WINAPI ResizePalette(HPALETTE,UINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003270BOOL WINAPI RestoreDC(HDC,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003271BOOL WINAPI RoundRect(HDC,INT,INT,INT,INT,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003272INT WINAPI SaveDC(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003273BOOL WINAPI ScaleViewportExtEx(HDC,INT,INT,INT,INT,LPSIZE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003274BOOL WINAPI ScaleWindowExtEx(HDC,INT,INT,INT,INT,LPSIZE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003275BOOL WINAPI SelectClipPath(HDC,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003276INT WINAPI SelectClipRgn(HDC,HRGN);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003277HGDIOBJ WINAPI SelectObject(HDC,HGDIOBJ);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003278HPALETTE WINAPI SelectPalette(HDC,HPALETTE,BOOL);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003279INT WINAPI SetAbortProc(HDC,ABORTPROC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003280INT WINAPI SetArcDirection(HDC,INT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003281LONG WINAPI SetBitmapBits(HBITMAP,LONG,LPCVOID);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003282BOOL WINAPI SetBitmapDimensionEx(HBITMAP,INT,INT,LPSIZE);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003283COLORREF WINAPI SetBkColor(HDC,COLORREF);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003284INT WINAPI SetBkMode(HDC,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003285UINT WINAPI SetBoundsRect(HDC,const RECT*,UINT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003286BOOL WINAPI SetBrushOrgEx(HDC,INT,INT,LPPOINT);
3287BOOL WINAPI SetColorAdjustment(HDC,const COLORADJUSTMENT*);
Peter Hunnisettf2b84922000-01-15 22:17:49 +00003288HCOLORSPACE WINAPI SetColorSpace(HDC,HCOLORSPACE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003289UINT WINAPI SetDIBColorTable(HDC,UINT,UINT,RGBQUAD*);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003290INT WINAPI SetDIBits(HDC,HBITMAP,UINT,UINT,LPCVOID,const BITMAPINFO*,UINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003291INT WINAPI SetDIBitsToDevice(HDC,INT,INT,DWORD,DWORD,INT,
3292 INT,UINT,UINT,LPCVOID,const BITMAPINFO*,UINT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003293HENHMETAFILE WINAPI SetEnhMetaFileBits(UINT,const BYTE *);
Peter Hunnisett0cdc4d91999-12-11 23:18:10 +00003294INT WINAPI SetGraphicsMode(HDC,INT);
Peter Hunnisettf2b84922000-01-15 22:17:49 +00003295INT WINAPI SetICMMode(HDC,INT);
Huw D M Daviesf64e0d71999-11-21 00:49:50 +00003296DWORD WINAPI SetLayout(HDC,DWORD);
Peter Hunnisett0cdc4d91999-12-11 23:18:10 +00003297INT WINAPI SetMapMode(HDC,INT);
3298DWORD WINAPI SetMapperFlags(HDC,DWORD);
3299HMETAFILE WINAPI SetMetaFileBitsEx(UINT,const BYTE*);
3300INT WINAPI SetMetaRgn(HDC);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003301BOOL WINAPI SetMiterLimit(HDC, FLOAT, PFLOAT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003302UINT WINAPI SetPaletteEntries(HPALETTE,UINT,UINT,LPPALETTEENTRY);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003303COLORREF WINAPI SetPixel(HDC,INT,INT,COLORREF);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003304BOOL WINAPI SetPixelV(HDC,INT,INT,COLORREF);
3305BOOL WINAPI SetPixelFormat(HDC,int,const PIXELFORMATDESCRIPTOR*);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003306INT WINAPI SetPolyFillMode(HDC,INT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003307BOOL WINAPI SetRectRgn(HRGN,INT,INT,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003308INT WINAPI SetRelAbs(HDC,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003309INT WINAPI SetROP2(HDC,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003310INT WINAPI SetStretchBltMode(HDC,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003311UINT WINAPI SetSystemPaletteUse(HDC,UINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003312UINT WINAPI SetTextAlign(HDC,UINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003313INT WINAPI SetTextCharacterExtra(HDC,INT);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003314COLORREF WINAPI SetTextColor(HDC,COLORREF);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003315BOOL WINAPI SetTextJustification(HDC,INT,INT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003316BOOL WINAPI SetViewportExtEx(HDC,INT,INT,LPSIZE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003317BOOL WINAPI SetViewportOrgEx(HDC,INT,INT,LPPOINT);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003318BOOL WINAPI SetWindowExtEx(HDC,INT,INT,LPSIZE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003319BOOL WINAPI SetWindowOrgEx(HDC,INT,INT,LPPOINT);
3320HENHMETAFILE WINAPI SetWinMetaFileBits(UINT,CONST BYTE*,HDC,CONST METAFILEPICT *);
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003321BOOL WINAPI SetWorldTransform(HDC,const XFORM*);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003322INT WINAPI StartDocA(HDC,const DOCINFOA*);
3323INT WINAPI StartDocW(HDC,const DOCINFOW*);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003324#define StartDoc WINELIB_NAME_AW(StartDoc)
Alexandre Julliarda3960291999-02-26 11:11:13 +00003325INT WINAPI StartPage(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003326INT WINAPI EndPage(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003327BOOL WINAPI StretchBlt(HDC,INT,INT,INT,INT,HDC,INT,
3328 INT,INT,INT,DWORD);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003329INT WINAPI StretchDIBits(HDC,INT,INT,INT,INT,INT,INT,
3330 INT,INT,const VOID*,const BITMAPINFO*,UINT,DWORD);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003331BOOL WINAPI StrokeAndFillPath(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003332BOOL WINAPI StrokePath(HDC);
3333BOOL WINAPI SwapBuffers(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003334BOOL WINAPI TextOutA(HDC,INT,INT,LPCSTR,INT);
3335BOOL WINAPI TextOutW(HDC,INT,INT,LPCWSTR,INT);
Veksler Michael1346a3c1998-12-15 11:15:35 +00003336#define TextOut WINELIB_NAME_AW(TextOut)
Huw D M Daviesa9f55c41999-05-08 12:45:18 +00003337BOOL WINAPI TranslateCharsetInfo(LPDWORD,LPCHARSETINFO,DWORD);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003338BOOL WINAPI UnrealizeObject(HGDIOBJ);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003339BOOL WINAPI UpdateColors(HDC);
Alexandre Julliarda3960291999-02-26 11:11:13 +00003340BOOL WINAPI WidenPath(HDC);
Peter Ganten87d95b71999-09-19 14:17:14 +00003341BOOL WINAPI PolyTextOutA(HDC,PPOLYTEXTA,INT);
3342BOOL WINAPI PolyTextOutW(HDC,PPOLYTEXTW,INT);
3343#define PolyTextOut WINELIB_NAME_AW(PolyTextOut)
Veksler Michael1346a3c1998-12-15 11:15:35 +00003344
Alexandre Julliard73cc3ba1999-03-13 17:12:07 +00003345#ifdef __cplusplus
3346}
3347#endif
3348
Francois Gouget6371e832000-10-13 23:12:19 +00003349#endif /* !NOGDI */
3350#endif /* _WINGDI_ */