2 * Win16 printer driver definitions
5 #ifndef __WINE_WIN16DRV_H
6 #define __WINE_WIN16DRV_H
14 #define GETGDIINFO 0x8001
15 #define INITPDEVICE 0x8000
17 #define GETGDIINFO 0x0001
18 #define INITPDEVICE 0x0000
22 #define OS_SCANLINES 4
23 #define OS_RECTANGLE 6
26 #define OS_POLYLINE 18
27 #define OS_ALTPOLYGON 22
28 #define OS_WINDPOLYGON 20
30 #define OS_POLYMARKER 24
33 #define OS_ROUNDRECT 72
37 #define ORD_COLORINFO 2
41 #define ORD_ENUMDFONTS 6
45 #define ORD_REALIZEOBJECT 10
48 #define ORD_DEVICEMODE 13
49 #define ORD_EXTTEXTOUT 14
50 #define ORD_GETCHARWIDTH 15
51 #define ORD_DEVICEBITMAP 16
52 #define ORD_FASTBORDER 17
53 #define ORD_SETATTRIBUTE 18
55 #define ORD_STRETCHBLT 27
56 #define ORD_STRETCHDIBITS 28
57 #define ORD_SELECTBITMAP 29
58 #define ORD_BITMAPBITS 30
60 #define ORD_EXTDEVICEMODE 90
61 #define ORD_DEVICECAPABILITIES 91
62 #define ORD_ADVANCEDSETUPDIALOG 93
64 #define ORD_DIALOGFN 100
65 #define ORD_PSEUDOEDIT 101
91 FUNC_DEVICECAPABILITIES
,
92 FUNC_ADVANCEDSETUPDIALOG
,
95 TOTAL_PRINTER_DRIVER_FUNCTIONS
/* insert functions before here */
100 LPSTR szDriver
; /* Driver name eg EPSON */
101 HINSTANCE16 hInst
; /* Handle for driver */
102 WORD ds_reg
; /* DS of driver */
103 FARPROC16 fn
[TOTAL_PRINTER_DRIVER_FUNCTIONS
]; /* Printer functions */
104 int nUsageCount
; /* Usage count, unload == 0 */
105 int nIndex
; /* Index in global driver array */
106 } LOADED_PRINTER_DRIVER
;
108 typedef struct PDEVICE_HEADER
110 LOADED_PRINTER_DRIVER
*pLPD
; /* Associated printer driver */
113 #include "pshpack1.h"
115 typedef struct DRAWMODE
129 } DRAWMODE
, *LPDRAWMODE
;
134 typedef struct WINE_ENUM_PRINTER_FONT_CALLBACK
136 int (*proc
)(LPENUMLOGFONT16
, LPNEWTEXTMETRIC16
, UINT16
, LPARAM
);
141 #define DRVOBJ_BRUSH 2
142 #define DRVOBJ_FONT 3
143 #define DRVOBJ_PBITMAP 5
145 /* Win16 printer driver physical DC */
148 SEGPTR segptrPDEVICE
; /* PDEVICE used by 16 bit printer drivers */
149 LOGFONT16 lf
; /* Current font details */
150 TEXTMETRIC16 tm
; /* Current font metrics */
151 LPFONTINFO16 FontInfo
; /* Current font realized by printer driver */
152 LPLOGBRUSH16 BrushInfo
; /* Current brush realized by printer driver */
153 LPLOGPEN16 PenInfo
; /* Current pen realized by printer driver */
157 * Printer driver functions
159 typedef SEGPTR LPPDEVICE
;
160 LOADED_PRINTER_DRIVER
*LoadPrinterDriver(const char *pszDriver
);
162 extern INT16
PRTDRV_Control(LPPDEVICE lpDestDev
, WORD wfunction
, SEGPTR lpInData
, SEGPTR lpOutData
);
163 extern WORD
PRTDRV_Enable(LPVOID lpDevInfo
, WORD wStyle
, LPCSTR lpDestDevType
,
164 LPCSTR lpDeviceName
, LPCSTR lpOutputFile
, LPVOID lpData
);
165 extern WORD
PRTDRV_EnumDFonts(LPPDEVICE lpDestDev
, LPSTR lpFaceName
,
166 FARPROC16 lpCallbackFunc
, LPVOID lpClientData
);
167 extern DWORD
PRTDRV_RealizeObject(LPPDEVICE lpDestDev
, WORD wStyle
,
168 LPVOID lpInObj
, LPVOID lpOutObj
,
171 extern BOOL16
PRTDRV_EnumObj(LPPDEVICE lpDestDev
, WORD iStyle
, FARPROC16 lpfn
, LPVOID lpb
);
172 extern DWORD
PRTDRV_ExtTextOut(LPPDEVICE lpDestDev
, WORD wDestXOrg
, WORD wDestYOrg
,
173 RECT16
*lpClipRect
, LPCSTR lpString
, WORD wCount
,
174 LPFONTINFO16 lpFontInfo
, SEGPTR lpDrawMode
,
175 SEGPTR lpTextXForm
, SHORT
*lpCharWidths
,
176 RECT16
* lpOpaqueRect
, WORD wOptions
);
178 extern WORD
PRTDRV_Output(LPPDEVICE lpDestDev
,
183 LPLOGBRUSH16 lpBrush
,
187 DWORD
PRTDRV_StretchBlt(LPPDEVICE lpDestDev
,
188 WORD wDestX
, WORD wDestY
,
189 WORD wDestXext
, WORD wDestYext
,
191 WORD wSrcX
, WORD wSrcY
,
192 WORD wSrcXext
, WORD wSrcYext
,
194 LPLOGBRUSH16 lpBrush
,
198 extern WORD
PRTDRV_GetCharWidth(LPPDEVICE lpDestDev
, LPINT lpBuffer
,
199 WORD wFirstChar
, WORD wLastChar
, LPFONTINFO16 lpFontInfo
,
200 SEGPTR lpDrawMode
, SEGPTR lpTextXForm
);
202 /* Wine driver functions */
204 extern BOOL
WIN16DRV_Init(void);
205 extern BOOL
WIN16DRV_GetCharWidth( struct tagDC
*dc
, UINT firstChar
, UINT lastChar
,
208 extern BOOL
WIN16DRV_GetTextExtentPoint( DC
*dc
, LPCSTR str
, INT count
,
210 extern BOOL
WIN16DRV_GetTextMetrics( DC
*dc
, TEXTMETRICA
*metrics
);
212 extern BOOL
WIN16DRV_ExtTextOut( DC
*dc
, INT x
, INT y
, UINT flags
,
213 const RECT
*lprect
, LPCSTR str
, UINT count
,
215 extern BOOL
WIN16DRV_LineTo( DC
*dc
, INT x
, INT y
);
216 extern BOOL
WIN16DRV_MoveToEx(DC
*dc
,INT x
,INT y
,LPPOINT pt
);
217 extern BOOL
WIN16DRV_Polygon(DC
*dc
, const POINT
* pt
, INT count
);
218 extern BOOL
WIN16DRV_Polyline(DC
*dc
, const POINT
* pt
, INT count
);
219 extern BOOL
WIN16DRV_Rectangle(DC
*dc
, INT left
, INT top
, INT right
, INT bottom
);
220 extern HGDIOBJ
WIN16DRV_SelectObject( DC
*dc
, HGDIOBJ handle
);
221 extern BOOL
WIN16DRV_PatBlt( struct tagDC
*dc
, INT left
, INT top
,
222 INT width
, INT height
, DWORD rop
);
223 extern BOOL
WIN16DRV_Ellipse(DC
*dc
, INT left
, INT top
, INT right
, INT bottom
);
224 extern BOOL
WIN16DRV_EnumDeviceFonts( DC
* dc
, LPLOGFONT16 plf
,
225 DEVICEFONTENUMPROC proc
, LPARAM lp
);
229 * Wine 16bit driver global variables
231 extern SEGPTR win16drv_SegPtr_TextXForm
;
232 extern LPTEXTXFORM16 win16drv_TextXFormP
;
233 extern SEGPTR win16drv_SegPtr_DrawMode
;
234 extern LPDRAWMODE win16drv_DrawModeP
;
236 #endif /* __WINE_WIN16DRV_H */