wmiutils: Implement IWbemPath::SetNamespaceAt.
[wine] / dlls / wineps.drv / psdrv.h
1 /*
2  *      PostScript driver definitions
3  *
4  *      Copyright 1998  Huw D M Davies
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #ifndef __WINE_PSDRV_H
22 #define __WINE_PSDRV_H
23
24 #include <stdarg.h>
25
26 #include "windef.h"
27 #include "winbase.h"
28 #include "wingdi.h"
29 #include "winspool.h"
30
31 #include "wine/unicode.h"
32 #include "wine/gdi_driver.h"
33 #include "wine/list.h"
34
35 typedef struct {
36     INT             index;
37     LPCSTR          sz;
38 } GLYPHNAME;
39
40 typedef struct {
41     LONG            UV;
42     const GLYPHNAME *name;
43 } UNICODEGLYPH;
44
45 typedef struct {
46     float       llx, lly, urx, ury;
47 } AFMBBOX;
48
49 typedef struct _tagAFMLIGS {
50     char                *successor;
51     char                *ligature;
52     struct _tagAFMLIGS  *next;
53 } AFMLIGS;
54
55 typedef struct {
56     int                 C;              /* character */
57     LONG                UV;
58     float               WX;
59     const GLYPHNAME     *N;             /* name */
60     AFMBBOX             B;
61     const AFMLIGS       *L;             /* Ligatures */
62 } OLD_AFMMETRICS;
63
64 typedef struct {
65     INT                 C;                      /* AFM encoding (or -1) */
66     LONG                UV;                     /* Unicode value */
67     FLOAT               WX;                     /* Advance width */
68     const GLYPHNAME     *N;                     /* Glyph name */
69 } AFMMETRICS;
70
71 typedef struct {
72     USHORT              usUnitsPerEm;           /* head:unitsPerEm */
73     SHORT               sAscender;              /* hhea:Ascender */
74     SHORT               sDescender;             /* hhea:Descender */
75     SHORT               sLineGap;               /* hhea:LineGap */
76     SHORT               sAvgCharWidth;          /* OS/2:xAvgCharWidth */
77     SHORT               sTypoAscender;          /* OS/2:sTypoAscender */
78     SHORT               sTypoDescender;         /* OS/2:sTypoDescender */
79     SHORT               sTypoLineGap;           /* OS/2:sTypeLineGap */
80     USHORT              usWinAscent;            /* OS/2:usWinAscent */
81     USHORT              usWinDescent;           /* OS/2:usWinDescent */
82 } WINMETRICS;
83
84 typedef struct _tagAFM {
85     LPCSTR              FontName;
86     LPCSTR              FullName;
87     LPCSTR              FamilyName;
88     LPCSTR              EncodingScheme;
89     LONG                Weight;                 /* FW_NORMAL etc. */
90     float               ItalicAngle;
91     BOOL                IsFixedPitch;
92     float               UnderlinePosition;
93     float               UnderlineThickness;
94     AFMBBOX             FontBBox;
95     float               Ascender;
96     float               Descender;
97     WINMETRICS          WinMetrics;
98     int                 NumofMetrics;
99     const AFMMETRICS    *Metrics;
100 } AFM;
101
102 /* Note no 'next' in AFM. Use AFMLISTENTRY as a container. This allow more than
103    one list to exist without having to reallocate the entire AFM structure. We
104    keep a global list of all afms (PSDRV_AFMFontList) plus a list of available
105    fonts for each DC (dc->physDev->Fonts) */
106
107 typedef struct _tagAFMLISTENTRY {
108     const AFM                   *afm;
109     struct _tagAFMLISTENTRY     *next;
110 } AFMLISTENTRY;
111
112 typedef struct _tagFONTFAMILY {
113     char                        *FamilyName; /* family name */
114     AFMLISTENTRY                *afmlist;    /* list of afms for this family */
115     struct _tagFONTFAMILY       *next;       /* next family */
116 } FONTFAMILY;
117
118 extern FONTFAMILY   *PSDRV_AFMFontList DECLSPEC_HIDDEN;
119 extern const AFM    *const PSDRV_BuiltinAFMs[] DECLSPEC_HIDDEN;     /* last element is NULL */
120
121 typedef struct
122 {
123     struct list          entry;
124     char                *Name;
125 } FONTNAME;
126
127 typedef struct {
128     float       llx, lly, urx, ury;
129 } IMAGEABLEAREA;
130
131 typedef struct {
132     float       x, y;
133 } PAPERDIMENSION;
134
135 /* Solaris kludge */
136 #undef PAGESIZE
137 typedef struct _tagPAGESIZE {
138     struct list         entry;
139     char                *Name;
140     char                *FullName;
141     char                *InvocationString;
142     IMAGEABLEAREA       *ImageableArea;
143     PAPERDIMENSION      *PaperDimension;
144     WORD                WinPage; /*eg DMPAPER_A4. Doesn't really belong here */
145 } PAGESIZE;
146
147
148 /* For BANDINFO Escape */
149 typedef struct _BANDINFOSTRUCT
150 {
151     BOOL GraphicsFlag;
152     BOOL TextFlag;
153     RECT GraphicsRect;
154 } BANDINFOSTRUCT, *PBANDINFOSTRUCT;
155
156 typedef struct
157 {
158     struct list                 entry;
159     char                        *Feature1;
160     char                        *Value1;
161     char                        *Feature2;
162     char                        *Value2;
163 } CONSTRAINT;
164
165 typedef struct
166 {
167     struct list                 entry;
168     const char                  *Name;
169     const char                  *FullName;
170     char                        *InvocationString;
171     WORD                        WinBin; /* eg DMBIN_LOWER */
172 } INPUTSLOT;
173
174 typedef enum _RASTERIZEROPTION
175   {RO_None, RO_Accept68K, RO_Type42, RO_TrueImage} RASTERIZEROPTION;
176
177 typedef struct
178 {
179     struct list                 entry;
180     char                        *Name;
181     char                        *FullName;
182     char                        *InvocationString;
183     WORD                        WinDuplex; /* eg DMDUP_SIMPLEX */
184 } DUPLEX;
185
186 typedef struct
187 {
188     struct list entry;
189     int    resx, resy;
190     char   *InvocationString;
191 } RESOLUTION;
192
193 /* Many Mac OS X based ppd files don't include a *ColorDevice line, so
194    we use a tristate here rather than a boolean.  Code that
195    cares is expected to treat these as if they were colour. */
196 typedef enum {
197     CD_NotSpecified,
198     CD_False,
199     CD_True
200 } COLORDEVICE;
201
202 typedef struct {
203     char                *NickName;
204     int                 LanguageLevel;
205     COLORDEVICE         ColorDevice;
206     struct list         Resolutions;
207     int                 DefaultResolution;
208     signed int          LandscapeOrientation;
209     char                *JCLBegin;
210     char                *JCLToPSInterpreter;
211     char                *JCLEnd;
212     char                *DefaultFont;
213     struct list         InstalledFonts;
214     struct list         PageSizes;
215     PAGESIZE            *DefaultPageSize;
216     struct list         Constraints;
217     struct list         InputSlots;
218     RASTERIZEROPTION    TTRasterizer;
219     struct list         Duplexes;
220     DUPLEX              *DefaultDuplex;
221 } PPD;
222
223 typedef struct {
224     DEVMODEW                    dmPublic;
225     struct _tagdocprivate {
226       int dummy;
227     }                           dmDocPrivate;
228     struct _tagdrvprivate {
229       UINT      numInstalledOptions; /* Options at end of struct */
230     }                           dmDrvPrivate;
231
232 /* Now comes:
233
234 numInstalledOptions of OPTIONs
235
236 */
237
238 } PSDRV_DEVMODE;
239
240 typedef struct
241 {
242     struct list             entry;
243     WCHAR                   *friendly_name;
244     PPD                     *ppd;
245     PSDRV_DEVMODE           *Devmode;
246     FONTFAMILY              *Fonts;
247     PPRINTER_ENUM_VALUESA   FontSubTable;
248     DWORD                   FontSubTableSize;
249 } PRINTERINFO;
250
251 typedef struct {
252     float               r, g, b;
253 } PSRGB;
254
255 typedef struct {
256     float               i;
257 } PSGRAY;
258
259
260 /* def's for PSCOLOR.type */
261 #define PSCOLOR_GRAY    0
262 #define PSCOLOR_RGB     1
263
264 typedef struct {
265     int                 type;
266     union {
267         PSRGB  rgb;
268         PSGRAY gray;
269     }                   value;
270 } PSCOLOR;
271
272 typedef struct {
273     const AFM           *afm;
274     float               scale;
275     TEXTMETRICW         tm;
276 } BUILTIN;
277
278 typedef struct tagTYPE42 TYPE42;
279
280 typedef struct tagTYPE1 TYPE1;
281
282 enum downloadtype {
283   Type1, Type42
284 };
285
286 typedef struct _tagDOWNLOAD {
287   enum downloadtype type;
288   union {
289     TYPE1  *Type1;
290     TYPE42 *Type42;
291   } typeinfo;
292   char *ps_name;
293   struct _tagDOWNLOAD *next;
294 } DOWNLOAD;
295
296 enum fontloc {
297   Builtin, Download
298 };
299
300 typedef struct
301 {
302     INT xx, xy, yx, yy;
303 } matrix;
304
305 typedef struct {
306     enum fontloc        fontloc;
307     union {
308         BUILTIN  Builtin;
309         DOWNLOAD *Download;
310     }                   fontinfo;
311
312     matrix              size;
313     PSCOLOR             color;
314     BOOL                set;            /* Have we done a setfont yet */
315
316   /* These are needed by PSDRV_ExtTextOut */
317     int                 escapement;
318     int                 underlineThickness;
319     int                 underlinePosition;
320     int                 strikeoutThickness;
321     int                 strikeoutPosition;
322
323 } PSFONT;
324
325 typedef struct {
326     PSCOLOR              color;
327     BOOL                 set;
328     struct brush_pattern pattern;
329 } PSBRUSH;
330
331 #define MAX_DASHLEN 16
332
333 typedef struct {
334     INT                 style;
335     INT                 width;
336     BYTE                join;
337     BYTE                endcap;
338     DWORD               dash[MAX_DASHLEN];
339     DWORD               dash_len;
340     PSCOLOR             color;
341     BOOL                set;
342 } PSPEN;
343
344 typedef struct {
345     DWORD               id;             /* Job id */
346     HANDLE              hprinter;       /* Printer handle */
347     LPWSTR              output;         /* Output file/port */
348     LPWSTR              doc_name;       /* Document Name */
349     BOOL                banding;        /* Have we received a NEXTBAND */
350     BOOL                OutOfPage;      /* Page header not sent yet */
351     INT                 PageNo;
352     BOOL                quiet;          /* Don't actually output anything */
353     BOOL                in_passthrough; /* In PASSTHROUGH mode */
354     BOOL                had_passthrough_rect; /* See the comment in PSDRV_Rectangle */
355 } JOB;
356
357 typedef struct
358 {
359     struct gdi_physdev  dev;
360     PSFONT              font;           /* Current PS font */
361     DOWNLOAD            *downloaded_fonts;
362     PSPEN               pen;
363     PSBRUSH             brush;
364     PSCOLOR             bkColor;
365     PSCOLOR             inkColor;       /* Last colour set */
366     JOB                 job;
367     PSDRV_DEVMODE       *Devmode;
368     PRINTERINFO         *pi;
369     SIZE                PageSize;      /* Physical page size in device units */
370     RECT                ImageableArea; /* Imageable area in device units */
371                                        /* NB both PageSize and ImageableArea
372                                           are not rotated in landscape mode,
373                                           so PageSize.cx is generally
374                                           < PageSize.cy */
375     int                 horzRes;       /* device caps */
376     int                 vertRes;
377     int                 horzSize;
378     int                 vertSize;
379     int                 logPixelsX;
380     int                 logPixelsY;
381
382     int                 pathdepth;
383 } PSDRV_PDEVICE;
384
385 static inline PSDRV_PDEVICE *get_psdrv_dev( PHYSDEV dev )
386 {
387     return (PSDRV_PDEVICE *)dev;
388 }
389
390 /*
391  *  Every glyph name in the Adobe Glyph List and the 35 core PostScript fonts
392  */
393
394 extern const INT    PSDRV_AGLGlyphNamesSize;
395 extern GLYPHNAME    PSDRV_AGLGlyphNames[] DECLSPEC_HIDDEN;
396
397
398 /*
399  *  The AGL encoding vector
400  */
401
402 extern const INT            PSDRV_AGLbyNameSize;    /* sorted by name -     */
403 extern const UNICODEGLYPH   PSDRV_AGLbyName[] DECLSPEC_HIDDEN;      /*  duplicates omitted  */
404
405 extern const INT            PSDRV_AGLbyUVSize;      /* sorted by UV -       */
406 extern const UNICODEGLYPH   PSDRV_AGLbyUV[] DECLSPEC_HIDDEN;        /*  duplicates included */
407
408 extern HINSTANCE PSDRV_hInstance DECLSPEC_HIDDEN;
409 extern HANDLE PSDRV_Heap DECLSPEC_HIDDEN;
410 extern char *PSDRV_ANSIVector[256] DECLSPEC_HIDDEN;
411
412 extern INPUTSLOT *find_slot( PPD *ppd, const PSDRV_DEVMODE *dm );
413 extern PAGESIZE *find_pagesize( PPD *ppd, const PSDRV_DEVMODE *dm );
414 extern DUPLEX *find_duplex( PPD *ppd, const PSDRV_DEVMODE *dm );
415
416 /* GDI driver functions */
417 extern BOOL PSDRV_Arc( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
418                        INT xstart, INT ystart, INT xend, INT yend ) DECLSPEC_HIDDEN;
419 extern BOOL PSDRV_Chord( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
420                          INT xstart, INT ystart, INT xend, INT yend ) DECLSPEC_HIDDEN;
421 extern DWORD PSDRV_DeviceCapabilities(LPSTR lpszDriver, LPCSTR lpszDevice, LPCSTR lpszPort,
422                                       WORD fwCapability, LPSTR lpszOutput, LPDEVMODEA lpDevMode) DECLSPEC_HIDDEN;
423 extern BOOL PSDRV_Ellipse( PHYSDEV dev, INT left, INT top, INT right, INT bottom) DECLSPEC_HIDDEN;
424 extern INT PSDRV_EndDoc( PHYSDEV dev ) DECLSPEC_HIDDEN;
425 extern INT PSDRV_EndPage( PHYSDEV dev ) DECLSPEC_HIDDEN;
426 extern BOOL PSDRV_EnumFonts( PHYSDEV dev, LPLOGFONTW plf, FONTENUMPROCW proc, LPARAM lp ) DECLSPEC_HIDDEN;
427 extern INT PSDRV_ExtDeviceMode(LPSTR lpszDriver, HWND hwnd, LPDEVMODEA lpdmOutput,
428                                LPSTR lpszDevice, LPSTR lpszPort, LPDEVMODEA lpdmInput,
429                                LPSTR lpszProfile, DWORD dwMode) DECLSPEC_HIDDEN;
430 extern INT PSDRV_ExtEscape( PHYSDEV dev, INT nEscape, INT cbInput, LPCVOID in_data,
431                             INT cbOutput, LPVOID out_data ) DECLSPEC_HIDDEN;
432 extern BOOL PSDRV_ExtTextOut( PHYSDEV dev, INT x, INT y, UINT flags,
433                               const RECT *lprect, LPCWSTR str, UINT count, const INT *lpDx ) DECLSPEC_HIDDEN;
434 extern BOOL PSDRV_FillPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
435 extern BOOL PSDRV_GetCharWidth(PHYSDEV dev, UINT firstChar, UINT lastChar, LPINT buffer) DECLSPEC_HIDDEN;
436 extern BOOL PSDRV_GetTextExtentExPoint(PHYSDEV dev, LPCWSTR str, INT count, LPINT alpDx) DECLSPEC_HIDDEN;
437 extern BOOL PSDRV_GetTextMetrics(PHYSDEV dev, TEXTMETRICW *metrics) DECLSPEC_HIDDEN;
438 extern BOOL PSDRV_LineTo(PHYSDEV dev, INT x, INT y) DECLSPEC_HIDDEN;
439 extern BOOL PSDRV_PaintRgn( PHYSDEV dev, HRGN hrgn ) DECLSPEC_HIDDEN;
440 extern BOOL PSDRV_PatBlt(PHYSDEV dev, struct bitblt_coords *dst, DWORD dwRop) DECLSPEC_HIDDEN;
441 extern BOOL PSDRV_Pie( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
442                        INT xstart, INT ystart, INT xend, INT yend ) DECLSPEC_HIDDEN;
443 extern BOOL PSDRV_PolyBezier( PHYSDEV dev, const POINT *pts, DWORD count ) DECLSPEC_HIDDEN;
444 extern BOOL PSDRV_PolyBezierTo( PHYSDEV dev, const POINT *pts, DWORD count ) DECLSPEC_HIDDEN;
445 extern BOOL PSDRV_PolyPolygon( PHYSDEV dev, const POINT* pts, const INT* counts, UINT polygons ) DECLSPEC_HIDDEN;
446 extern BOOL PSDRV_PolyPolyline( PHYSDEV dev, const POINT* pts, const DWORD* counts, DWORD polylines ) DECLSPEC_HIDDEN;
447 extern DWORD PSDRV_PutImage( PHYSDEV dev, HRGN clip, BITMAPINFO *info,
448                              const struct gdi_image_bits *bits, struct bitblt_coords *src,
449                              struct bitblt_coords *dst, DWORD rop ) DECLSPEC_HIDDEN;
450 extern BOOL PSDRV_Rectangle( PHYSDEV dev, INT left, INT top, INT right, INT bottom ) DECLSPEC_HIDDEN;
451 extern BOOL PSDRV_RoundRect( PHYSDEV dev, INT left, INT top, INT right,
452                              INT bottom, INT ell_width, INT ell_height ) DECLSPEC_HIDDEN;
453 extern HBRUSH PSDRV_SelectBrush( PHYSDEV dev, HBRUSH hbrush, const struct brush_pattern *pattern ) DECLSPEC_HIDDEN;
454 extern HFONT PSDRV_SelectFont( PHYSDEV dev, HFONT hfont, UINT *aa_flags ) DECLSPEC_HIDDEN;
455 extern HPEN PSDRV_SelectPen( PHYSDEV dev, HPEN hpen, const struct brush_pattern *pattern ) DECLSPEC_HIDDEN;
456 extern COLORREF PSDRV_SetBkColor( PHYSDEV dev, COLORREF color ) DECLSPEC_HIDDEN;
457 extern COLORREF PSDRV_SetDCBrushColor( PHYSDEV dev, COLORREF color ) DECLSPEC_HIDDEN;
458 extern COLORREF PSDRV_SetDCPenColor( PHYSDEV dev, COLORREF color ) DECLSPEC_HIDDEN;
459 extern COLORREF PSDRV_SetPixel( PHYSDEV dev, INT x, INT y, COLORREF color ) DECLSPEC_HIDDEN;
460 extern COLORREF PSDRV_SetTextColor( PHYSDEV dev, COLORREF color ) DECLSPEC_HIDDEN;
461 extern INT PSDRV_StartDoc( PHYSDEV dev, const DOCINFOW *doc ) DECLSPEC_HIDDEN;
462 extern BOOL PSDRV_StrokeAndFillPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
463 extern BOOL PSDRV_StrokePath( PHYSDEV dev ) DECLSPEC_HIDDEN;
464
465 extern void PSDRV_MergeDevmodes(PSDRV_DEVMODE *dm1, const PSDRV_DEVMODE *dm2,
466                          PRINTERINFO *pi) DECLSPEC_HIDDEN;
467 extern BOOL PSDRV_GetFontMetrics(void) DECLSPEC_HIDDEN;
468 extern PPD *PSDRV_ParsePPD(char *fname, HANDLE printer) DECLSPEC_HIDDEN;
469 extern PRINTERINFO *PSDRV_FindPrinterInfo(LPCWSTR name) DECLSPEC_HIDDEN;
470 extern const AFM *PSDRV_FindAFMinList(FONTFAMILY *head, LPCSTR name) DECLSPEC_HIDDEN;
471 extern BOOL PSDRV_AddAFMtoList(FONTFAMILY **head, const AFM *afm,
472         BOOL *p_added) DECLSPEC_HIDDEN;
473 extern void PSDRV_FreeAFMList( FONTFAMILY *head ) DECLSPEC_HIDDEN;
474
475 extern INT PSDRV_XWStoDS( PHYSDEV dev, INT width ) DECLSPEC_HIDDEN;
476
477 extern BOOL PSDRV_Brush(PHYSDEV dev, BOOL EO) DECLSPEC_HIDDEN;
478 extern BOOL PSDRV_SetFont( PHYSDEV dev ) DECLSPEC_HIDDEN;
479 extern BOOL PSDRV_SetPen( PHYSDEV dev ) DECLSPEC_HIDDEN;
480
481 extern void PSDRV_AddClip( PHYSDEV dev, HRGN hrgn ) DECLSPEC_HIDDEN;
482 extern void PSDRV_SetClip( PHYSDEV dev ) DECLSPEC_HIDDEN;
483 extern void PSDRV_ResetClip( PHYSDEV dev ) DECLSPEC_HIDDEN;
484
485 extern BOOL PSDRV_CopyColor(PSCOLOR *col1, PSCOLOR *col2) DECLSPEC_HIDDEN;
486 extern void PSDRV_CreateColor( PHYSDEV dev, PSCOLOR *pscolor,
487                      COLORREF wincolor ) DECLSPEC_HIDDEN;
488 extern char PSDRV_UnicodeToANSI(int u) DECLSPEC_HIDDEN;
489
490 extern INT PSDRV_WriteHeader( PHYSDEV dev, LPCWSTR title ) DECLSPEC_HIDDEN;
491 extern INT PSDRV_WriteFooter( PHYSDEV dev ) DECLSPEC_HIDDEN;
492 extern INT PSDRV_WriteNewPage( PHYSDEV dev ) DECLSPEC_HIDDEN;
493 extern INT PSDRV_WriteEndPage( PHYSDEV dev ) DECLSPEC_HIDDEN;
494 extern BOOL PSDRV_WriteMoveTo(PHYSDEV dev, INT x, INT y) DECLSPEC_HIDDEN;
495 extern BOOL PSDRV_WriteLineTo(PHYSDEV dev, INT x, INT y) DECLSPEC_HIDDEN;
496 extern BOOL PSDRV_WriteStroke(PHYSDEV dev) DECLSPEC_HIDDEN;
497 extern BOOL PSDRV_WriteRectangle(PHYSDEV dev, INT x, INT y, INT width, INT height) DECLSPEC_HIDDEN;
498 extern BOOL PSDRV_WriteRRectangle(PHYSDEV dev, INT x, INT y, INT width, INT height) DECLSPEC_HIDDEN;
499 extern BOOL PSDRV_WriteSetFont(PHYSDEV dev, const char *name, matrix size, INT escapement,
500                                BOOL fake_italic) DECLSPEC_HIDDEN;
501 extern BOOL PSDRV_WriteGlyphShow(PHYSDEV dev, LPCSTR g_name) DECLSPEC_HIDDEN;
502 extern BOOL PSDRV_WriteSetPen(PHYSDEV dev) DECLSPEC_HIDDEN;
503 extern BOOL PSDRV_WriteArc(PHYSDEV dev, INT x, INT y, INT w, INT h,
504                              double ang1, double ang2) DECLSPEC_HIDDEN;
505 extern BOOL PSDRV_WriteCurveTo(PHYSDEV dev, POINT pts[3]) DECLSPEC_HIDDEN;
506 extern BOOL PSDRV_WriteSetColor(PHYSDEV dev, PSCOLOR *color) DECLSPEC_HIDDEN;
507 extern BOOL PSDRV_WriteSetBrush(PHYSDEV dev) DECLSPEC_HIDDEN;
508 extern BOOL PSDRV_WriteFill(PHYSDEV dev) DECLSPEC_HIDDEN;
509 extern BOOL PSDRV_WriteEOFill(PHYSDEV dev) DECLSPEC_HIDDEN;
510 extern BOOL PSDRV_WriteGSave(PHYSDEV dev) DECLSPEC_HIDDEN;
511 extern BOOL PSDRV_WriteGRestore(PHYSDEV dev) DECLSPEC_HIDDEN;
512 extern BOOL PSDRV_WriteNewPath(PHYSDEV dev) DECLSPEC_HIDDEN;
513 extern BOOL PSDRV_WriteClosePath(PHYSDEV dev) DECLSPEC_HIDDEN;
514 extern BOOL PSDRV_WriteClip(PHYSDEV dev) DECLSPEC_HIDDEN;
515 extern BOOL PSDRV_WriteRectClip(PHYSDEV dev, INT x, INT y, INT w, INT h) DECLSPEC_HIDDEN;
516 extern BOOL PSDRV_WriteRectClip2(PHYSDEV dev, CHAR *pszArrayName) DECLSPEC_HIDDEN;
517 extern BOOL PSDRV_WriteEOClip(PHYSDEV dev) DECLSPEC_HIDDEN;
518 extern BOOL PSDRV_WriteHatch(PHYSDEV dev) DECLSPEC_HIDDEN;
519 extern BOOL PSDRV_WriteRotate(PHYSDEV dev, float ang) DECLSPEC_HIDDEN;
520 extern BOOL PSDRV_WriteIndexColorSpaceBegin(PHYSDEV dev, int size) DECLSPEC_HIDDEN;
521 extern BOOL PSDRV_WriteIndexColorSpaceEnd(PHYSDEV dev) DECLSPEC_HIDDEN;
522 extern BOOL PSDRV_WriteRGBQUAD(PHYSDEV dev, const RGBQUAD *rgb, int number) DECLSPEC_HIDDEN;
523 extern BOOL PSDRV_WriteImage(PHYSDEV dev, WORD depth, INT xDst, INT yDst,
524                              INT widthDst, INT heightDst, INT widthSrc,
525                              INT heightSrc, BOOL mask, BOOL top_down) DECLSPEC_HIDDEN;
526 extern BOOL PSDRV_WriteBytes(PHYSDEV dev, const BYTE *bytes, DWORD number) DECLSPEC_HIDDEN;
527 extern BOOL PSDRV_WriteData(PHYSDEV dev, const BYTE *byte, DWORD number) DECLSPEC_HIDDEN;
528 extern DWORD PSDRV_WriteSpool(PHYSDEV dev, LPCSTR lpData, DWORD cch) DECLSPEC_HIDDEN;
529 extern BOOL PSDRV_WriteDIBPatternDict(PHYSDEV dev, const BITMAPINFO *bmi, BYTE *bits, UINT usage) DECLSPEC_HIDDEN;
530 extern BOOL PSDRV_WriteArrayPut(PHYSDEV dev, CHAR *pszArrayName, INT nIndex, LONG lCoord) DECLSPEC_HIDDEN;
531 extern BOOL PSDRV_WriteArrayDef(PHYSDEV dev, CHAR *pszArrayName, INT nSize) DECLSPEC_HIDDEN;
532
533 extern INT PSDRV_StartPage( PHYSDEV dev ) DECLSPEC_HIDDEN;
534
535 INT PSDRV_GlyphListInit(void) DECLSPEC_HIDDEN;
536 const GLYPHNAME *PSDRV_GlyphName(LPCSTR szName) DECLSPEC_HIDDEN;
537 VOID PSDRV_IndexGlyphList(void) DECLSPEC_HIDDEN;
538 BOOL PSDRV_GetType1Metrics(void) DECLSPEC_HIDDEN;
539 const AFMMETRICS *PSDRV_UVMetrics(LONG UV, const AFM *afm) DECLSPEC_HIDDEN;
540 SHORT PSDRV_CalcAvgCharWidth(const AFM *afm) DECLSPEC_HIDDEN;
541
542 extern BOOL PSDRV_SelectBuiltinFont(PHYSDEV dev, HFONT hfont,
543                                     LOGFONTW *plf, LPSTR FaceName) DECLSPEC_HIDDEN;
544 extern BOOL PSDRV_WriteSetBuiltinFont(PHYSDEV dev) DECLSPEC_HIDDEN;
545 extern BOOL PSDRV_WriteBuiltinGlyphShow(PHYSDEV dev, LPCWSTR str, INT count) DECLSPEC_HIDDEN;
546
547 extern BOOL PSDRV_SelectDownloadFont(PHYSDEV dev) DECLSPEC_HIDDEN;
548 extern BOOL PSDRV_WriteSetDownloadFont(PHYSDEV dev) DECLSPEC_HIDDEN;
549 extern BOOL PSDRV_WriteDownloadGlyphShow(PHYSDEV dev, const WORD *glpyhs, UINT count) DECLSPEC_HIDDEN;
550 extern BOOL PSDRV_EmptyDownloadList(PHYSDEV dev, BOOL write_undef) DECLSPEC_HIDDEN;
551
552 extern DWORD write_spool( PHYSDEV dev, const void *data, DWORD num ) DECLSPEC_HIDDEN;
553
554 #define MAX_G_NAME 31 /* max length of PS glyph name */
555 extern void get_glyph_name(HDC hdc, WORD index, char *name) DECLSPEC_HIDDEN;
556
557 extern TYPE1 *T1_download_header(PHYSDEV dev, char *ps_name,
558                                  RECT *bbox, UINT emsize) DECLSPEC_HIDDEN;
559 extern BOOL T1_download_glyph(PHYSDEV dev, DOWNLOAD *pdl,
560                               DWORD index, char *glyph_name) DECLSPEC_HIDDEN;
561 extern void T1_free(TYPE1 *t1) DECLSPEC_HIDDEN;
562
563 extern TYPE42 *T42_download_header(PHYSDEV dev, char *ps_name,
564                                    RECT *bbox, UINT emsize) DECLSPEC_HIDDEN;
565 extern BOOL T42_download_glyph(PHYSDEV dev, DOWNLOAD *pdl,
566                                DWORD index, char *glyph_name) DECLSPEC_HIDDEN;
567 extern void T42_free(TYPE42 *t42) DECLSPEC_HIDDEN;
568
569 extern DWORD RLE_encode(BYTE *in_buf, DWORD len, BYTE *out_buf) DECLSPEC_HIDDEN;
570 extern DWORD ASCII85_encode(BYTE *in_buf, DWORD len, BYTE *out_buf) DECLSPEC_HIDDEN;
571
572 #define push_lc_numeric(x) do {                                 \
573         const char *tmplocale = setlocale(LC_NUMERIC,NULL);     \
574         setlocale(LC_NUMERIC,x);
575
576 #define pop_lc_numeric()                                        \
577         setlocale(LC_NUMERIC,tmplocale);                        \
578 } while (0)
579
580 static inline WCHAR *strdupW( const WCHAR *str )
581 {
582     int size;
583     WCHAR *ret;
584
585     if (!str) return NULL;
586     size = (strlenW( str ) + 1) * sizeof(WCHAR);
587     ret = HeapAlloc( GetProcessHeap(), 0, size );
588     if (ret) memcpy( ret, str, size );
589     return ret;
590 }
591
592 #endif