summaryrefslogtreecommitdiff
path: root/Xprint/pcl/Pclmap.h
blob: ecec35776b2c7cdfb9bfe09056a3daefa00235fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/* $Xorg: Pclmap.h,v 1.3 2000/08/17 19:48:08 cpqbld Exp $ */
/*
(c) Copyright 1996 Hewlett-Packard Company
(c) Copyright 1996 International Business Machines Corp.
(c) Copyright 1996 Sun Microsystems, Inc.
(c) Copyright 1996 Novell, Inc.
(c) Copyright 1996 Digital Equipment Corp.
(c) Copyright 1996 Fujitsu Limited
(c) Copyright 1996 Hitachi, Ltd.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Except as contained in this notice, the names of the copyright holders shall
not be used in advertising or otherwise to promote the sale, use or other
dealings in this Software without prior written authorization from said
copyright holders.
*/

#ifndef _PCLMAP_H_
#define _PCLMAP_H_

#ifdef XP_PCL_COLOR
#if (defined(__STDC__) && !defined(UNIXCPP)) || defined(ANSICPP)
#define NAME(subname) PclCr##subname
#define CATNAME(prefix,subname) prefix##Color##subname
#else
#define NAME(subname) PclCr/**/subname
#define CATNAME(prefix,subname) prefix/**/Color/**/subname
#endif
#endif /* XP_PCL_COLOR */

#ifdef XP_PCL_MONO
#if (defined(__STDC__) && !defined(UNIXCPP)) || defined(ANSICPP)
#define NAME(subname) PclMn##subname
#define CATNAME(prefix,subname) prefix##Mono##subname
#else
#define NAME(subname) PclMn/**/subname
#define CATNAME(prefix,subname) prefix/**/Mono/**/subname
#endif
#endif /* XP_PCL_MONO */

#ifdef XP_PCL_LJ3
#if (defined(__STDC__) && !defined(UNIXCPP)) || defined(ANSICPP)
#define NAME(subname) PclLj3##subname
#define CATNAME(prefix,subname) prefix##Lj3##subname
#else
#define NAME(subname) PclLj3/**/subname
#define CATNAME(prefix,subname) prefix/**/Lj3/**/subname
#endif
#endif /* XP_PCL_LJ3 */

/* PclInit.c */
#define InitializePclDriver		CATNAME(Initialize, PclDriver)
#define PclCloseScreen			NAME(CloseScreen)
#define PclGetContextFromWindow		NAME(GetContextFromWindow)
#define PclScreenPrivateIndex	NAME(ScreenPrivateIndex)
#define PclWindowPrivateIndex	NAME(WindowPrivateIndex)
#define PclContextPrivateIndex	NAME(ContextPrivateIndex)
#define PclPixmapPrivateIndex	NAME(PixmapPrivateIndex)
#define PclGCPrivateIndex	NAME(GCPrivateIndex)

/* PclPrint.c */
#define PclStartJob			NAME(StartJob)
#define PclEndJob			NAME(EndJob)
#define PclStartPage			NAME(StartPage)
#define PclEndPage			NAME(EndPage)
#define PclStartDoc			NAME(StartDoc)
#define PclEndDoc			NAME(EndDoc)
#define PclDocumentData			NAME(DocumentData)
#define PclGetDocumentData		NAME(GetDocumentData)

/* PclWindow.c */
#define PclCreateWindow			NAME(CreateWindow)
#define PclMapWindow			NAME(MapWindow)
#define PclPositionWindow		NAME(PositionWindow)
#define PclUnmapWindow			NAME(UnmapWindow)
#define PclCopyWindow			NAME(CopyWindow)
#define PclChangeWindowAttributes	NAME(ChangeWindowAttributes)
#define PclPaintWindow			NAME(PaintWindow)
#define PclDestroyWindow		NAME(DestroyWindow)

/* PclGC.c */
#define PclCreateGC			NAME(CreateGC)
#define PclDestroyGC			NAME(DestroyGC)
#define PclGetDrawablePrivateStuff	NAME(GetDrawablePrivateStuff)
#define PclSetDrawablePrivateGC		NAME(SetDrawablePrivateGC)
#define PclSendPattern			NAME(SendPattern)
#define PclUpdateDrawableGC		NAME(UpdateDrawableGC)
#define PclComputeCompositeClip		NAME(ComputeCompositeClip)
#define PclValidateGC			NAME(ValidateGC)

/* PclAttr.c */
#define PclGetAttributes		NAME(GetAttributes)
#define PclGetOneAttribute		NAME(GetOneAttribute)
#define PclAugmentAttributes		NAME(AugmentAttributes)
#define PclSetAttributes		NAME(SetAttributes)

/* PclColor.c */
#define PclLookUp			NAME(LookUp)
#define PclCreateDefColormap		NAME(CreateDefColormap)
#define PclCreateColormap		NAME(CreateColormap)
#define PclDestroyColormap		NAME(DestroyColormap)
#define PclInstallColormap		NAME(InstallColormap)
#define PclUninstallColormap		NAME(UninstallColormap)
#define PclListInstalledColormaps	NAME(ListInstalledColormaps)
#define PclStoreColors			NAME(StoreColors)
#define PclResolveColor			NAME(ResolveColor)
#define PclFindPaletteMap		NAME(FindPaletteMap)
#define PclUpdateColormap		NAME(UpdateColormap)
#define PclReadMap			NAME(ReadMap)

/* PclPixmap.c */
#define PclCreatePixmap			NAME(CreatePixmap)
#define PclDestroyPixmap		NAME(DestroyPixmap)

/* PclArc.c */
#define PclDoArc			NAME(DoArc)
#define PclPolyArc			NAME(PolyArc)
#define PclPolyFillArc			NAME(PolyFillArc)

/* PclArea.c */
#define PclPutImage			NAME(PutImage)
#define PclCopyArea			NAME(CopyArea)
#define PclCopyPlane			NAME(CopyPlane)

/* PclLine */
#define PclPolyLine			NAME(PolyLine)
#define PclPolySegment			NAME(PolySegment)

/* PclPixel.c */
#define PclPolyPoint			NAME(PolyPoint)
#define PclPushPixels			NAME(PushPixels)

/* PclPolygon.c */
#define PclPolyRectangle		NAME(PolyRectangle)
#define PclFillPolygon			NAME(FillPolygon)
#define PclPolyFillRect			NAME(PolyFillRect)

/* PclSpans.c */
#define PclFillSpans			NAME(FillSpans)
#define PclSetSpans			NAME(SetSpans)

/* PclText.c */
#define PclPolyText8			NAME(PolyText8)
#define PclPolyText16			NAME(PolyText16)
#define PclImageText8			NAME(ImageText8)
#define PclImageText16			NAME(ImageText16)
#define PclImageGlyphBlt		NAME(ImageGlyphBlt)
#define PclPolyGlyphBlt			NAME(PolyGlyphBlt)
#define PclPolyGlyphBlt			NAME(PolyGlyphBlt)

/* PclFonts.c */
#define PclRealizeFont			NAME(RealizeFont)
#define PclUnrealizeFont		NAME(UnrealizeFont)

/* PclSFonts.c */
#define PclDownloadSoftFont8		NAME(DownloadSoftFont8)
#define PclDownloadSoftFont16		NAME(DownloadSoftFont16)
#define PclCreateSoftFontInfo		NAME(CreateSoftFontInfo)
#define PclDestroySoftFontInfo		NAME(DestroySoftFontInfo)

/* PclMisc.c */
#define PclQueryBestSize		NAME(QueryBestSize)
#define GetPropString			NAME(GetPropString)
#define SystemCmd			NAME(SystemCmd)
#define PclGetMediumDimensions		NAME(GetMediumDimensions)
#define PclGetReproducibleArea		NAME(GetReproducibleArea)
#define PclSpoolFigs			NAME(SpoolFigs)
#define PclSendData			NAME(SendData)

/* PclCursor.c */
#define PclConstrainCursor		NAME(ConstrainCursor)
#define PclCursorLimits			NAME(CursorLimits)
#define PclDisplayCursor		NAME(DisplayCursor)
#define PclRealizeCursor		NAME(RealizeCursor)
#define PclUnrealizeCursor		NAME(UnrealizeCursor)
#define PclRecolorCursor		NAME(RecolorCursor)
#define PclSetCursorPosition		NAME(SetCursorPosition)

#endif /* _PCLMAP_H_ */