1 /* Definitions for printing
3 * Copyright 1998 Huw Davies, Andreas Mohr
5 * Portions Copyright (c) 1999 Corel Corporation
6 * (Paul Quinn, Albert Den Haan)
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #ifndef __WINE_WINSPOOL_H
23 #define __WINE_WINSPOOL_H
31 #define PRINTER_ATTRIBUTE_QUEUED 0x00000001
32 #define PRINTER_ATTRIBUTE_DIRECT 0x00000002
33 #define PRINTER_ATTRIBUTE_DEFAULT 0x00000004
34 #define PRINTER_ATTRIBUTE_SHARED 0x00000008
35 #define PRINTER_ATTRIBUTE_NETWORK 0x00000010
36 #define PRINTER_ATTRIBUTE_HIDDEN 0x00000020
37 #define PRINTER_ATTRIBUTE_LOCAL 0x00000040
39 #define PRINTER_ATTRIBUTE_ENABLE_DEVQ 0x00000080
40 #define PRINTER_ATTRIBUTE_KEEPPRINTEDJOBS 0x00000100
41 #define PRINTER_ATTRIBUTE_DO_COMPLETE_FIRST 0x00000200
43 #define PRINTER_ATTRIBUTE_WORK_OFFLINE 0x00000400
44 #define PRINTER_ATTRIBUTE_ENABLE_BIDI 0x00000800
46 #define PRINTER_CONTROL_PAUSE 1
47 #define PRINTER_CONTROL_RESUME 2
48 #define PRINTER_CONTROL_PURGE 3
49 #define PRINTER_CONTROL_SET_STATUS 4
51 #define PRINTER_ENUM_DEFAULT 0x00000001
52 #define PRINTER_ENUM_LOCAL 0x00000002
53 #define PRINTER_ENUM_CONNECTIONS 0x00000004
54 #define PRINTER_ENUM_FAVORITE 0x00000004
55 #define PRINTER_ENUM_NAME 0x00000008
56 #define PRINTER_ENUM_REMOTE 0x00000010
57 #define PRINTER_ENUM_SHARED 0x00000020
58 #define PRINTER_ENUM_NETWORK 0x00000040
60 #define PRINTER_ENUM_EXPAND 0x00004000
61 #define PRINTER_ENUM_CONTAINER 0x00008000
63 #define PRINTER_ENUM_ICONMASK 0x00ff0000
64 #define PRINTER_ENUM_ICON1 0x00010000
65 #define PRINTER_ENUM_ICON2 0x00020000
66 #define PRINTER_ENUM_ICON3 0x00040000
67 #define PRINTER_ENUM_ICON4 0x00080000
68 #define PRINTER_ENUM_ICON5 0x00100000
69 #define PRINTER_ENUM_ICON6 0x00200000
70 #define PRINTER_ENUM_ICON7 0x00400000
71 #define PRINTER_ENUM_ICON8 0x00800000
74 /* various printer statuses */
75 #define PRINTER_STATUS_PAUSED 0x00000001
76 #define PRINTER_STATUS_ERROR 0x00000002
77 #define PRINTER_STATUS_PENDING_DELETION 0x00000004
78 #define PRINTER_STATUS_PAPER_JAM 0x00000008
79 #define PRINTER_STATUS_PAPER_OUT 0x00000010
80 #define PRINTER_STATUS_MANUAL_FEED 0x00000020
81 #define PRINTER_STATUS_PAPER_PROBLEM 0x00000040
82 #define PRINTER_STATUS_OFFLINE 0x00000080
83 #define PRINTER_STATUS_IO_ACTIVE 0x00000100
84 #define PRINTER_STATUS_BUSY 0x00000200
85 #define PRINTER_STATUS_PRINTING 0x00000400
86 #define PRINTER_STATUS_OUTPUT_BIN_FULL 0x00000800
87 #define PRINTER_STATUS_NOT_AVAILABLE 0x00001000
88 #define PRINTER_STATUS_WAITING 0x00002000
89 #define PRINTER_STATUS_PROCESSING 0x00004000
90 #define PRINTER_STATUS_INITIALIZING 0x00008000
91 #define PRINTER_STATUS_WARMING_UP 0x00010000
92 #define PRINTER_STATUS_TONER_LOW 0x00020000
93 #define PRINTER_STATUS_NO_TONER 0x00040000
94 #define PRINTER_STATUS_PAGE_PUNT 0x00080000
95 #define PRINTER_STATUS_USER_INTERVENTION 0x00100000
96 #define PRINTER_STATUS_OUT_OF_MEMORY 0x00200000
97 #define PRINTER_STATUS_DOOR_OPEN 0x00400000
98 #define PRINTER_STATUS_SERVER_UNKNOWN 0x00800000
99 #define PRINTER_STATUS_POWER_SAVE 0x01000000
101 #define NO_PRIORITY 0
102 #define MAX_PRIORITY 99
103 #define MIN_PRIORITY 1
104 #define DEF_PRIORITY 1
106 #define JOB_CONTROL_PAUSE 1
107 #define JOB_CONTROL_RESUME 2
108 #define JOB_CONTROL_CANCEL 3
109 #define JOB_CONTROL_RESTART 4
110 #define JOB_CONTROL_DELETE 5
111 #define JOB_CONTROL_SENT_TO_PRINTER 6
112 #define JOB_CONTROL_LAST_PAGE_EJECTED 7
114 #define JOB_STATUS_PAUSED 0x0001
115 #define JOB_STATUS_ERROR 0x0002
116 #define JOB_STATUS_DELETING 0x0004
117 #define JOB_STATUS_SPOOLING 0x0008
118 #define JOB_STATUS_PRINTING 0x0010
119 #define JOB_STATUS_OFFLINE 0x0020
120 #define JOB_STATUS_PAPEROUT 0x0040
121 #define JOB_STATUS_PRINTED 0x0080
122 #define JOB_STATUS_DELETED 0x0100
123 #define JOB_STATUS_BLOCKED_DEVQ 0x0200
124 #define JOB_STATUS_USER_INTERVENTION 0x0400
126 #define JOB_POSITION_UNSPECIFIED 1
129 #define DI_READ_SPOOL_JOB 3
132 #define FORM_BUILTIN 1
133 #define FORM_PRINTER 2
135 #define PORT_TYPE_WRITE 1
136 #define PORT_TYPE_READ 2
137 #define PORT_TYPE_REDIRECTED 4
138 #define PORT_TYPE_NET_ATTACHED 8
140 #define PORT_STATUS_TYPE_ERROR 1
141 #define PORT_STATUS_TYPE_WARNING 2
142 #define PORT_STATUS_TYPE_INFO 3
144 #define PORT_STATUS_OFFLINE 1
145 #define PORT_STATUS_PAPER_JAM 2
146 #define PORT_STATUS_PAPER_OUT 3
147 #define PORT_STATUS_OUTPUT_BIN_FULL 4
148 #define PORT_STATUS_PAPER_PROBLEM 5
149 #define PORT_STATUS_NO_TONER 6
150 #define PORT_STATUS_DOOR_OPEN 7
151 #define PORT_STATUS_USER_INTERVENTION 8
152 #define PORT_STATUS_OUT_OF_MEMORY 9
153 #define PORT_STATUS_TONER_LOW 10
154 #define PORT_STATUS_WARMING_UP 11
155 #define PORT_STATUS_POWER_SAVE 12
157 #define PRINTER_NOTIFY_TYPE 0
158 #define JOB_NOTIFY_TYPE 1
160 #define PRINTER_NOTIFY_FIELD_SERVER_NAME 0x00
161 #define PRINTER_NOTIFY_FIELD_PRINTER_NAME 0x01
162 #define PRINTER_NOTIFY_FIELD_SHARE_NAME 0x02
163 #define PRINTER_NOTIFY_FIELD_PORT_NAME 0x03
164 #define PRINTER_NOTIFY_FIELD_DRIVER_NAME 0x04
165 #define PRINTER_NOTIFY_FIELD_COMMENT 0x05
166 #define PRINTER_NOTIFY_FIELD_LOCATION 0x06
167 #define PRINTER_NOTIFY_FIELD_DEVMODE 0x07
168 #define PRINTER_NOTIFY_FIELD_SEPFILE 0x08
169 #define PRINTER_NOTIFY_FIELD_PRINT_PROCESSOR 0x09
170 #define PRINTER_NOTIFY_FIELD_PARAMETERS 0x0a
171 #define PRINTER_NOTIFY_FIELD_DATATYPE 0x0b
172 #define PRINTER_NOTIFY_FIELD_SECURITY_DESCRIPTOR 0x0c
173 #define PRINTER_NOTIFY_FIELD_ATTRIBUTES 0x0d
174 #define PRINTER_NOTIFY_FIELD_PRIORITY 0x0e
175 #define PRINTER_NOTIFY_FIELD_DEFAULT_PRIORITY 0x0f
176 #define PRINTER_NOTIFY_FIELD_START_TIME 0x10
177 #define PRINTER_NOTIFY_FIELD_UNTIL_TIME 0x11
178 #define PRINTER_NOTIFY_FIELD_STATUS 0x12
179 #define PRINTER_NOTIFY_FIELD_STATUS_STRING 0x13
180 #define PRINTER_NOTIFY_FIELD_CJOBS 0x14
181 #define PRINTER_NOTIFY_FIELD_AVERAGE_PPM 0x15
182 #define PRINTER_NOTIFY_FIELD_TOTAL_PAGES 0x16
183 #define PRINTER_NOTIFY_FIELD_PAGES_PRINTED 0x17
184 #define PRINTER_NOTIFY_FIELD_TOTAL_BYTES 0x18
185 #define PRINTER_NOTIFY_FIELD_BYTES_PRINTED 0x19
187 #define JOB_NOTIFY_FIELD_PRINTER_NAME 0x00
188 #define JOB_NOTIFY_FIELD_MACHINE_NAME 0x01
189 #define JOB_NOTIFY_FIELD_PORT_NAME 0x02
190 #define JOB_NOTIFY_FIELD_USER_NAME 0x03
191 #define JOB_NOTIFY_FIELD_NOTIFY_NAME 0x04
192 #define JOB_NOTIFY_FIELD_DATATYPE 0x05
193 #define JOB_NOTIFY_FIELD_PRINT_PROCESSOR 0x06
194 #define JOB_NOTIFY_FIELD_PARAMETERS 0x07
195 #define JOB_NOTIFY_FIELD_DRIVER_NAME 0x08
196 #define JOB_NOTIFY_FIELD_DEVMODE 0x09
197 #define JOB_NOTIFY_FIELD_STATUS 0x0a
198 #define JOB_NOTIFY_FIELD_STATUS_STRING 0x0b
199 #define JOB_NOTIFY_FIELD_SECURITY_DESCRIPTOR 0x0c
200 #define JOB_NOTIFY_FIELD_DOCUMENT 0x0d
201 #define JOB_NOTIFY_FIELD_PRIORITY 0x0e
202 #define JOB_NOTIFY_FIELD_POSITION 0x0f
203 #define JOB_NOTIFY_FIELD_SUBMITTED 0x10
204 #define JOB_NOTIFY_FIELD_START_TIME 0x11
205 #define JOB_NOTIFY_FIELD_UNTIL_TIME 0x12
206 #define JOB_NOTIFY_FIELD_TIME 0x13
207 #define JOB_NOTIFY_FIELD_TOTAL_PAGES 0x14
208 #define JOB_NOTIFY_FIELD_PAGES_PRINTED 0x15
209 #define JOB_NOTIFY_FIELD_TOTAL_BYTES 0x16
210 #define JOB_NOTIFY_FIELD_BYTES_PRINTED 0x17
212 #define PRINTER_NOTIFY_OPTIONS_REFRESH 1
213 #define PRINTER_NOTIFY_INFO_DISCARDED 1
215 #define PRINTER_CHANGE_ADD_PRINTER 0x00000001
216 #define PRINTER_CHANGE_SET_PRINTER 0x00000002
217 #define PRINTER_CHANGE_DELETE_PRINTER 0x00000004
218 #define PRINTER_CHANGE_FAILED_CONNECTION_PRINTER 0x00000008
219 #define PRINTER_CHANGE_PRINTER 0x000000ff
220 #define PRINTER_CHANGE_ADD_JOB 0x00000100
221 #define PRINTER_CHANGE_SET_JOB 0x00000200
222 #define PRINTER_CHANGE_DELETE_JOB 0x00000400
223 #define PRINTER_CHANGE_WRITE_JOB 0x00000800
224 #define PRINTER_CHANGE_JOB 0x0000ff00
225 #define PRINTER_CHANGE_ADD_FORM 0x00010000
226 #define PRINTER_CHANGE_SET_FORM 0x00020000
227 #define PRINTER_CHANGE_DELETE_FORM 0x00040000
228 #define PRINTER_CHANGE_FORM 0x00070000
229 #define PRINTER_CHANGE_ADD_PORT 0x00100000
230 #define PRINTER_CHANGE_CONFIGURE_PORT 0x00200000
231 #define PRINTER_CHANGE_DELETE_PORT 0x00400000
232 #define PRINTER_CHANGE_PORT 0x00700000
233 #define PRINTER_CHANGE_ADD_PRINT_PROCESSOR 0x01000000
234 #define PRINTER_CHANGE_DELETE_PRINTER_PROCESSOR 0x04000000
235 #define PRINTER_CHANGE_PRINT_PROCESSOR 0x07000000
236 #define PRINTER_CHANGE_ADD_PRINTER_DRIVER 0x10000000
237 #define PRINTER_CHANGE_SET_PRINTER_DRIVER 0x20000000
238 #define PRINTER_CHANGE_DELETE_PRINTER_DRIVER 0x40000000
239 #define PRINTER_CHANGE_PRINTER_DRIVER 0x70000000
240 #define PRINTER_CHANGE_TIMEOUT 0x80000000
241 #define PRINTER_CHANGE_ALL 0x7777ffff
243 #define PRINTER_ERROR_INFORMATION 0x80000000
244 #define PRINTER_ERROR_WARNING 0x40000000
245 #define PRINTER_ERROR_SEVERE 0x20000000
247 #define PRINTER_ERROR_OUTODPAPER 0x00000001
248 #define PRINTER_ERROR_JAM 0x00000002
249 #define PRINTER_ERROR_OUTOFTONER 0x00000004
252 typedef struct _PRINTER_DEFAULTSA {
255 ACCESS_MASK DesiredAccess;
256 } PRINTER_DEFAULTSA, *LPPRINTER_DEFAULTSA;
258 typedef struct _PRINTER_DEFAULTSW {
261 ACCESS_MASK DesiredAccess;
262 } PRINTER_DEFAULTSW, *LPPRINTER_DEFAULTSW;
264 DECL_WINELIB_TYPE_AW(PRINTER_DEFAULTS)
265 DECL_WINELIB_TYPE_AW(LPPRINTER_DEFAULTS)
267 typedef struct _DRIVER_INFO_1A {
269 } DRIVER_INFO_1A, *PDRIVER_INFO_1A, *LPDRIVER_INFO_1A;
271 typedef struct _DRIVER_INFO_1W {
273 } DRIVER_INFO_1W, *PDRIVER_INFO_1W, *LPDRIVER_INFO_1W;
275 DECL_WINELIB_TYPE_AW(DRIVER_INFO_1)
276 DECL_WINELIB_TYPE_AW(PDRIVER_INFO_1)
277 DECL_WINELIB_TYPE_AW(LPDRIVER_INFO_1)
279 typedef struct _DRIVER_INFO_2A {
286 } DRIVER_INFO_2A, *PDRIVER_INFO_2A, *LPDRIVER_INFO_2A;
288 typedef struct _DRIVER_INFO_2W {
295 } DRIVER_INFO_2W, *PDRIVER_INFO_2W, *LPDRIVER_INFO_2W;
297 DECL_WINELIB_TYPE_AW(DRIVER_INFO_2)
298 DECL_WINELIB_TYPE_AW(PDRIVER_INFO_2)
299 DECL_WINELIB_TYPE_AW(LPDRIVER_INFO_2)
301 typedef struct _DRIVER_INFO_3A {
309 LPSTR pDependentFiles;
311 LPSTR pDefaultDataType;
312 } DRIVER_INFO_3A, *PDRIVER_INFO_3A, *LPDRIVER_INFO_3A;
314 typedef struct _DRIVER_INFO_3W {
322 LPWSTR pDependentFiles;
324 LPWSTR pDefaultDataType;
325 } DRIVER_INFO_3W, *PDRIVER_INFO_3W, *LPDRIVER_INFO_3W;
327 DECL_WINELIB_TYPE_AW(DRIVER_INFO_3)
328 DECL_WINELIB_TYPE_AW(PDRIVER_INFO_3)
329 DECL_WINELIB_TYPE_AW(LPDRIVER_INFO_3)
331 typedef struct _PRINTER_INFO_1A {
336 } PRINTER_INFO_1A, *PPRINTER_INFO_1A, *LPPRINTER_INFO_1A;
338 typedef struct _PRINTER_INFO_1W {
343 } PRINTER_INFO_1W, *PPRINTER_INFO_1W, *LPPRINTER_INFO_1W;
345 DECL_WINELIB_TYPE_AW(PRINTER_INFO_1)
346 DECL_WINELIB_TYPE_AW(PPRINTER_INFO_1)
347 DECL_WINELIB_TYPE_AW(LPPRINTER_INFO_1)
349 /* FIXME: winspool.h declares some structure members with the name Status.
350 * unfortunatly <X11/ICE/ICElib.h> #defines Status to the type 'int'
351 * therfore the following hack */
354 typedef struct _PRINTER_INFO_2A {
364 LPSTR pPrintProcessor;
367 PSECURITY_DESCRIPTOR pSecurityDescriptor;
370 DWORD DefaultPriority;
376 } PRINTER_INFO_2A, *PPRINTER_INFO_2A, *LPPRINTER_INFO_2A;
378 typedef struct _PRINTER_INFO_2W {
388 LPWSTR pPrintProcessor;
391 PSECURITY_DESCRIPTOR pSecurityDescriptor;
394 DWORD DefaultPriority;
400 } PRINTER_INFO_2W, *PPRINTER_INFO_2W, *LPPRINTER_INFO_2W;
402 DECL_WINELIB_TYPE_AW(PRINTER_INFO_2)
403 DECL_WINELIB_TYPE_AW(PPRINTER_INFO_2)
404 DECL_WINELIB_TYPE_AW(LPPRINTER_INFO_2)
406 typedef struct _PRINTER_INFO_3 {
407 PSECURITY_DESCRIPTOR pSecurityDescriptor;
408 } PRINTER_INFO_3, *PPRINTER_INFO_3, *LPPRINTER_INFO_3;
410 typedef struct _PRINTER_INFO_4A {
414 } PRINTER_INFO_4A, *PPRINTER_INFO_4A, *LPPRINTER_INFO_4A;
416 typedef struct _PRINTER_INFO_4W {
420 } PRINTER_INFO_4W, *PPRINTER_INFO_4W, *LPPRINTER_INFO_4W;
422 DECL_WINELIB_TYPE_AW(PRINTER_INFO_4)
423 DECL_WINELIB_TYPE_AW(PPRINTER_INFO_4)
424 DECL_WINELIB_TYPE_AW(LPPRINTER_INFO_4)
426 typedef struct _PRINTER_INFO_5A {
430 DWORD DeviceNotSelectedTimeout;
431 DWORD TransmissionRetryTimeout;
432 } PRINTER_INFO_5A, *PPRINTER_INFO_5A, *LPPRINTER_INFO_5A;
434 typedef struct _PRINTER_INFO_5W {
438 DWORD DeviceNotSelectedTimeout;
439 DWORD TransmissionRetryTimeout;
440 } PRINTER_INFO_5W, *PPRINTER_INFO_5W, *LPPRINTER_INFO_5W;
442 DECL_WINELIB_TYPE_AW(PRINTER_INFO_5)
443 DECL_WINELIB_TYPE_AW(PPRINTER_INFO_5)
444 DECL_WINELIB_TYPE_AW(LPPRINTER_INFO_5)
446 typedef struct _PRINTER_INFO_6 {
448 } PRINTER_INFO_6, *PPRINTER_INFO_6, *LPPRINTER_INFO_6;
450 typedef struct _JOB_INFO_1A {
463 SYSTEMTIME Submitted;
464 } JOB_INFO_1A, *PJOB_INFO_1A, *LPJOB_INFO_1A;
466 typedef struct _JOB_INFO_1W {
479 SYSTEMTIME Submitted;
480 } JOB_INFO_1W, *PJOB_INFO_1W, *LPJOB_INFO_1W;
482 DECL_WINELIB_TYPE_AW(JOB_INFO_1)
483 DECL_WINELIB_TYPE_AW(PJOB_INFO_1)
484 DECL_WINELIB_TYPE_AW(LPJOB_INFO_1)
486 typedef struct _JOB_INFO_2A {
494 LPSTR pPrintProcessor;
499 PSECURITY_DESCRIPTOR pSecurityDescriptor;
507 SYSTEMTIME Submitted;
510 } JOB_INFO_2A, *PJOB_INFO_2A, *LPJOB_INFO_2A;
512 typedef struct _JOB_INFO_2W {
520 LPWSTR pPrintProcessor;
525 PSECURITY_DESCRIPTOR pSecurityDescriptor;
533 SYSTEMTIME Submitted;
536 } JOB_INFO_2W, *PJOB_INFO_2W, *LPJOB_INFO_2W;
538 DECL_WINELIB_TYPE_AW(JOB_INFO_2)
539 DECL_WINELIB_TYPE_AW(PJOB_INFO_2)
540 DECL_WINELIB_TYPE_AW(LPJOB_INFO_2)
542 typedef struct _JOB_INFO_3 {
546 } JOB_INFO_3, *PJOB_INFO_3, *LPJOB_INFO_3;
548 typedef struct _ADDJOB_INFO_1A {
551 } ADDJOB_INFO_1A, *PADDJOB_INFO_1A, *LPADDJOB_INFO_1A;
553 typedef struct _ADDJOB_INFO_1W {
556 } ADDJOB_INFO_1W, *PADDJOB_INFO_1W, *LPADDJOB_INFO_1W;
558 DECL_WINELIB_TYPE_AW(ADDJOB_INFO_1)
559 DECL_WINELIB_TYPE_AW(PADDJOB_INFO_1)
560 DECL_WINELIB_TYPE_AW(LPADDJOB_INFO_1)
562 typedef struct _DOC_INFO_1A {
566 } DOC_INFO_1A, *PDOC_INFO_1A, *LPDOC_INFO_1A;
568 typedef struct _DOC_INFO_1W {
572 } DOC_INFO_1W, *PDOC_INFO_1W, *LPDOC_INFO_1W;
574 DECL_WINELIB_TYPE_AW(DOC_INFO_1)
575 DECL_WINELIB_TYPE_AW(PDOC_INFO_1)
576 DECL_WINELIB_TYPE_AW(LPDOC_INFO_1)
578 typedef struct _DOC_INFO_2A {
584 } DOC_INFO_2A, *PDOC_INFO_2A, *LPDOC_INFO_2A;
586 typedef struct _DOC_INFO_2W {
592 } DOC_INFO_2W, *PDOC_INFO_2W, *LPDOC_INFO_2W;
594 DECL_WINELIB_TYPE_AW(DOC_INFO_2)
595 DECL_WINELIB_TYPE_AW(PDOC_INFO_2)
596 DECL_WINELIB_TYPE_AW(LPDOC_INFO_2)
598 typedef struct _FORM_INFO_1A {
603 } FORM_INFO_1A, *PFORM_INFO_1A, *LPFORM_INFO_1A;
605 typedef struct _FORM_INFO_1W {
610 } FORM_INFO_1W, *PFORM_INFO_1W, *LPFORM_INFO_1W;
612 DECL_WINELIB_TYPE_AW(FORM_INFO_1)
613 DECL_WINELIB_TYPE_AW(PFORM_INFO_1)
614 DECL_WINELIB_TYPE_AW(LPFORM_INFO_1)
616 typedef struct _PRINTPROCESSOR_INFO_1A {
618 } PRINTPROCESSOR_INFO_1A, *PPRINTPROCESSOR_INFO_1A,
619 *LPPRINTPROCESSOR_INFO_1A;
621 typedef struct _PRINTPROCESSOR_INFO_1W {
623 } PRINTPROCESSOR_INFO_1W, *PPRINTPROCESSOR_INFO_1W,
624 *LPPRINTPROCESSOR_INFO_1W;
626 DECL_WINELIB_TYPE_AW(PRINTPROCESSOR_INFO_1)
627 DECL_WINELIB_TYPE_AW(PPRINTPROCESSOR_INFO_1)
628 DECL_WINELIB_TYPE_AW(LPPRINTPROCESSOR_INFO_1)
630 typedef struct _PORT_INFO_1A {
632 } PORT_INFO_1A, *PPORT_INFO_1A, *LPPORT_INFO_1A;
634 typedef struct _PORT_INFO_1W {
636 } PORT_INFO_1W, *PPORT_INFO_1W, *LPPORT_INFO_1W;
638 DECL_WINELIB_TYPE_AW(PORT_INFO_1)
639 DECL_WINELIB_TYPE_AW(PPORT_INFO_1)
640 DECL_WINELIB_TYPE_AW(LPPORT_INFO_1)
642 typedef struct _PORT_INFO_2A {
648 } PORT_INFO_2A, *PPORT_INFO_2A, *LPPORT_INFO_2A;
650 typedef struct _PORT_INFO_2W {
656 } PORT_INFO_2W, *PPORT_INFO_2W, *LPPORT_INFO_2W;
658 DECL_WINELIB_TYPE_AW(PORT_INFO_2)
659 DECL_WINELIB_TYPE_AW(PPORT_INFO_2)
660 DECL_WINELIB_TYPE_AW(LPPORT_INFO_2)
662 typedef struct _PORT_INFO_3A {
666 } PORT_INFO_3A, *PPORT_INFO_3A, *LPPORT_INFO_3A;
668 typedef struct _PORT_INFO_3W {
672 } PORT_INFO_3W, *PPORT_INFO_3W, *LPPORT_INFO_3W;
674 DECL_WINELIB_TYPE_AW(PORT_INFO_3)
675 DECL_WINELIB_TYPE_AW(PPORT_INFO_3)
676 DECL_WINELIB_TYPE_AW(LPPORT_INFO_3)
678 typedef struct _MONITOR_INFO_1A {
680 } MONITOR_INFO_1A, *PMONITOR_INFO_1A, *LPMONITOR_INFO_1A;
682 typedef struct _MONITOR_INFO_1W {
684 } MONITOR_INFO_1W, *PMONITOR_INFO_1W, *LPMONITOR_INFO_1W;
686 DECL_WINELIB_TYPE_AW(MONITOR_INFO_1)
687 DECL_WINELIB_TYPE_AW(PMONITOR_INFO_1)
688 DECL_WINELIB_TYPE_AW(LPMONITOR_INFO_1)
693 typedef struct _MONITOR_INFO_2A {
697 } MONITOR_INFO_2A, *PMONITOR_INFO_2A, *LPMONITOR_INFO_2A;
699 typedef struct _MONITOR_INFO_2W {
703 } MONITOR_INFO_2W, *PMONITOR_INFO_2W, *LPMONITOR_INFO_2W;
705 DECL_WINELIB_TYPE_AW(MONITOR_INFO_2)
706 DECL_WINELIB_TYPE_AW(PMONITOR_INFO_2)
707 DECL_WINELIB_TYPE_AW(LPMONITOR_INFO_2)
709 typedef struct _DATATYPES_INFO_1A {
711 } DATATYPES_INFO_1A, *PDATATYPES_INFO_1A, *LPDATATYPES_INFO_1A;
713 typedef struct _DATATYPES_INFO_1W {
715 } DATATYPES_INFO_1W, *PDATATYPES_INFO_1W, *LPDATATYPES_INFO_1W;
717 DECL_WINELIB_TYPE_AW(DATATYPES_INFO_1)
718 DECL_WINELIB_TYPE_AW(PDATATYPES_INFO_1)
719 DECL_WINELIB_TYPE_AW(LPDATATYPES_INFO_1)
721 typedef struct _PRINTER_NOTIFY_OPTIONS_TYPE {
728 } PRINTER_NOTIFY_OPTIONS_TYPE, *PPRINTER_NOTIFY_OPTIONS_TYPE,
729 *LPPRINTER_NOTIFY_OPTIONS_TYPE;
731 typedef struct _PRINTER_NOTIFY_OPTIONS {
735 PPRINTER_NOTIFY_OPTIONS_TYPE pTypes;
736 } PRINTER_NOTIFY_OPTIONS, *PPRINTER_NOTIFY_OPTIONS, *LPPRINTER_NOTIFY_OPTIONS;
738 typedef struct _PRINTER_NOTIFY_INFO_DATA {
750 } PRINTER_NOTIFY_INFO_DATA, *PPRINTER_NOTIFY_INFO_DATA,
751 *LPPRINTER_NOTIFY_INFO_DATA;
753 typedef struct _PRINTER_NOTIFY_INFO {
757 PRINTER_NOTIFY_INFO_DATA aData[1];
758 } PRINTER_NOTIFY_INFO, *PPRINTER_NOTIFY_INFO, *LPPRINTER_NOTIFY_INFO;
760 typedef struct _PROVIDOR_INFO_1A {
764 } PROVIDOR_INFO_1A, *PPROVIDOR_INFO_1A, *LPPROVIDOR_INFO_1A;
766 typedef struct _PROVIDOR_INFO_1W {
770 } PROVIDOR_INFO_1W, *PPROVIDOR_INFO_1W, *LPPROVIDOR_INFO_1W;
772 DECL_WINELIB_TYPE_AW(PROVIDOR_INFO_1)
773 DECL_WINELIB_TYPE_AW(PPROVIDOR_INFO_1)
774 DECL_WINELIB_TYPE_AW(LPPROVIDOR_INFO_1)
776 typedef struct _PRINTER_ENUM_VALUESA {
782 } PRINTER_ENUM_VALUESA, *PPRINTER_ENUM_VALUESA;
784 typedef struct _PRINTER_ENUM_VALUESW {
790 } PRINTER_ENUM_VALUESW, *PPRINTER_ENUM_VALUESW;
792 DECL_WINELIB_TYPE_AW(PRINTER_ENUM_VALUES)
793 DECL_WINELIB_TYPE_AW(PPRINTER_ENUM_VALUES)
796 INT WINAPI DeviceCapabilitiesA(LPCSTR pDevice,LPCSTR pPort,WORD fwCapability,
797 LPSTR pOutput, LPDEVMODEA pDevMode);
798 INT WINAPI DeviceCapabilitiesW(LPCWSTR pDevice, LPCWSTR pPort,
799 WORD fwCapability, LPWSTR pOutput,
800 const DEVMODEW *pDevMode);
802 #define DeviceCapabilities WINELIB_NAME_AW(DeviceCapabilities)
804 LONG WINAPI DocumentPropertiesA(HWND hWnd,HANDLE hPrinter,
805 LPSTR pDeviceName, LPDEVMODEA pDevModeOutput,
806 LPDEVMODEA pDevModeInput,DWORD fMode );
807 LONG WINAPI DocumentPropertiesW(HWND hWnd, HANDLE hPrinter,
809 LPDEVMODEW pDevModeOutput,
810 LPDEVMODEW pDevModeInput, DWORD fMode);
812 #define DocumentProperties WINELIB_NAME_AW(DocumentProperties)
814 BOOL WINAPI OpenPrinterA(LPSTR lpPrinterName,HANDLE *phPrinter,
815 LPPRINTER_DEFAULTSA pDefault);
816 BOOL WINAPI OpenPrinterW(LPWSTR lpPrinterName,HANDLE *phPrinter,
817 LPPRINTER_DEFAULTSW pDefault);
819 #define OpenPrinter WINELIB_NAME_AW(OpenPrinter)
821 BOOL WINAPI ResetPrinterA(HANDLE hPrinter, LPPRINTER_DEFAULTSA pDefault);
822 BOOL WINAPI ResetPrinterW(HANDLE hPrinter, LPPRINTER_DEFAULTSW pDefault);
823 #define ResetPrinter WINELIB_NAME_AW(ResetPrinter)
825 BOOL WINAPI ClosePrinter (HANDLE phPrinter);
827 BOOL WINAPI EnumJobsA(HANDLE hPrinter, DWORD FirstJob, DWORD NoJobs,
828 DWORD Level, LPBYTE pJob, DWORD cbBuf, LPDWORD pcbNeeded,
830 BOOL WINAPI EnumJobsW(HANDLE hPrinter, DWORD FirstJob, DWORD NoJobs,
831 DWORD Level, LPBYTE pJob, DWORD cbBuf, LPDWORD pcbNeeded,
833 #define EnumJobs WINELIB_NAME_AW(EnumJobs)
835 BOOL WINAPI EnumPrintersA(DWORD dwType, LPSTR lpszName,
836 DWORD dwLevel, LPBYTE lpbPrinters,
837 DWORD cbBuf, LPDWORD lpdwNeeded,
838 LPDWORD lpdwReturned);
839 BOOL WINAPI EnumPrintersW(DWORD dwType, LPWSTR lpszName,
840 DWORD dwLevel, LPBYTE lpbPrinters,
841 DWORD cbBuf, LPDWORD lpdwNeeded,
842 LPDWORD lpdwReturned);
843 #define EnumPrinters WINELIB_NAME_AW(EnumPrinters)
845 BOOL WINAPI PrinterProperties(HWND hWnd, HANDLE hPrinter);
847 BOOL WINAPI GetPrinterDriverDirectoryA(LPSTR,LPSTR,DWORD,LPBYTE,DWORD,LPDWORD);
848 BOOL WINAPI GetPrinterDriverDirectoryW(LPWSTR,LPWSTR,DWORD,LPBYTE,DWORD,LPDWORD);
849 #define GetPrinterDriverDirectory WINELIB_NAME_AW(GetPrinterDriverDirectory)
851 BOOL WINAPI GetPrinterDriverA(HANDLE hPrinter, LPSTR pEnvironment,
852 DWORD Level, LPBYTE pDriverInfo,
853 DWORD cbBuf, LPDWORD pcbNeeded);
854 BOOL WINAPI GetPrinterDriverW(HANDLE hPrinter, LPWSTR pEnvironment,
855 DWORD Level, LPBYTE pDriverInfo,
856 DWORD cbBuf, LPDWORD pcbNeeded);
857 #define GetPrinterDriver WINELIB_NAME_AW(GetPrinterDriver)
859 BOOL WINAPI SetJobA(HANDLE hPrinter, DWORD JobID, DWORD Level, LPBYTE pJob,
861 BOOL WINAPI SetJobW(HANDLE hPrinter, DWORD JobID, DWORD Level, LPBYTE pJob,
863 #define SetJob WINELIB_NAME_AW(SetJob)
865 BOOL WINAPI GetJobA(HANDLE hPrinter, DWORD JobID, DWORD Level, LPBYTE pJob,
866 DWORD cbBuf, LPDWORD pcbNeeded);
867 BOOL WINAPI GetJobW(HANDLE hPrinter, DWORD JobID, DWORD Level, LPBYTE pJob,
868 DWORD cbBuf, LPDWORD pcbNeeded);
869 #define GetJob WINELIB_NAME_AW(GetJob)
871 HANDLE WINAPI AddPrinterA(LPSTR pName, DWORD Level, LPBYTE pPrinter);
872 HANDLE WINAPI AddPrinterW(LPWSTR pName, DWORD Level, LPBYTE pPrinter);
873 #define AddPrinter WINELIB_NAME_AW(AddPrinter)
875 BOOL WINAPI DeletePrinter(HANDLE hPrinter);
877 BOOL WINAPI SetPrinterA(HANDLE hPrinter, DWORD Level, LPBYTE pPrinter,
879 BOOL WINAPI SetPrinterW(HANDLE hPrinter, DWORD Level, LPBYTE pPrinter,
881 #define SetPrinter WINELIB_NAME_AW(SetPrinter)
883 BOOL WINAPI GetPrinterA(HANDLE hPrinter, DWORD Level, LPBYTE pPrinter,
884 DWORD cbBuf, LPDWORD pcbNeeded);
885 BOOL WINAPI GetPrinterW(HANDLE hPrinter, DWORD Level, LPBYTE pPrinter,
886 DWORD cbBuf, LPDWORD pcbNeeded);
887 #define GetPrinter WINELIB_NAME_AW(GetPrinter)
889 BOOL WINAPI AddPrinterDriverA(LPSTR pName, DWORD Level, LPBYTE pDriverInfo);
890 BOOL WINAPI AddPrinterDriverW(LPWSTR pName, DWORD Level, LPBYTE pDriverInfo);
891 #define AddPrinterDriver WINELIB_NAME_AW(AddPrinterDriver)
893 BOOL WINAPI EnumPrinterDriversA(LPSTR pName, LPSTR pEnvironment, DWORD Level,
894 LPBYTE pDriverInfo, DWORD cbBuf,
895 LPDWORD pcbNeeded, LPDWORD pcbReturned);
896 BOOL WINAPI EnumPrinterDriversW(LPWSTR pName, LPWSTR pEnvironment, DWORD Level,
897 LPBYTE pDriverInfo, DWORD cbBuf,
898 LPDWORD pcbNeeded, LPDWORD pcbReturned);
899 #define EnumPrinterDrivers WINELIB_NAME_AW(EnumPrinterDrivers)
901 BOOL WINAPI GetDefaultPrinterA(LPSTR pName, LPDWORD pcbNameSize);
902 BOOL WINAPI GetDefaultPrinterW(LPWSTR pName, LPDWORD pcbNameSize);
903 #define GetDefaultPrinter WINELIB_NAME_AW(GetDefaultPrinter)
905 BOOL WINAPI DeletePrinterDriverA(LPSTR pName, LPSTR pEnvironment,
907 BOOL WINAPI DeletePrinterDriverW(LPWSTR pName, LPWSTR pEnvironment,
909 #define DeletePrinterDriver WINELIB_NAME_AW(DeletePrinterDriver)
911 BOOL WINAPI AddPrintProcessorA(LPSTR pName, LPSTR pEnvironment,
912 LPSTR pPathName, LPSTR pPrintProcessorName);
913 BOOL WINAPI AddPrintProcessorW(LPWSTR pName, LPWSTR pEnvironment,
914 LPWSTR pPathName, LPWSTR pPrintProcessorName);
915 #define AddPrintProcessor WINELIB_NAME_AW(AddPrintProcessor)
917 BOOL WINAPI EnumPrintProcessorsA(LPSTR pName, LPSTR pEnvironment,
918 DWORD Level, LPBYTE pPrintProcessorInfo,
919 DWORD cbBuf, LPDWORD pcbNeeded,
920 LPDWORD pcbReturned);
921 BOOL WINAPI EnumPrintProcessorsW(LPWSTR pName, LPWSTR pEnvironment,
922 DWORD Level, LPBYTE pPrintProcessorInfo,
923 DWORD cbBuf, LPDWORD pcbNeeded,
924 LPDWORD pcbReturned);
925 #define EnumPrintProcessors WINELIB_NAME_AW(EnumPrintProcessors)
927 BOOL WINAPI GetPrintProcessorDirectoryA(LPSTR pName, LPSTR pEnvironment,
929 LPBYTE pPrintProcessorInfo,
930 DWORD cbBuf, LPDWORD pcbNeeded);
932 BOOL WINAPI GetPrintProcessorDirectoryW(LPWSTR pName, LPWSTR pEnvironment,
934 LPBYTE pPrintProcessorInfo,
935 DWORD cbBuf, LPDWORD pcbNeeded);
936 #define GetPrintProcessorDirectory WINELIB_NAME_AW(GetPrintProcessorDirectory)
938 BOOL WINAPI EnumPrintProcessorDatatypesA(LPSTR pName,
939 LPSTR pPrintProcessorName,
940 DWORD Level, LPBYTE pDatatypes,
941 DWORD cbBuf, LPDWORD pcbNeeded,
942 LPDWORD pcbReturned);
943 BOOL WINAPI EnumPrintProcessorDatatypesW(LPWSTR pName,
944 LPWSTR pPrintProcessorName,
945 DWORD Level, LPBYTE pDatatypes,
946 DWORD cbBuf, LPDWORD pcbNeeded,
947 LPDWORD pcbReturned);
948 #define EnumPrintProcessorDatatypes WINELIB_NAME_AW(EnumPrintProcessorDatatypes)
950 BOOL WINAPI DeletePrintProcessorA(LPSTR pName, LPSTR pEnvironment,
951 LPSTR pPrintProcessorName);
952 BOOL WINAPI DeletePrintProcessorW(LPWSTR pName, LPWSTR pEnvironment,
953 LPWSTR pPrintProcessorName);
954 #define DeletePrintProcessor WINELIB_NAME_AW(DeletePrintProcessor)
956 DWORD WINAPI StartDocPrinterA(HANDLE hPrinter, DWORD Level, LPBYTE pDocInfo);
957 DWORD WINAPI StartDocPrinterW(HANDLE hPrinter, DWORD Level, LPBYTE pDocInfo);
958 #define StartDocPrinter WINELIB_NAME_AW(StartDocPrinter)
960 BOOL WINAPI StartPagePrinter(HANDLE hPrinter);
961 BOOL WINAPI WritePrinter(HANDLE hPrinter, LPVOID pBuf, DWORD cbBuf,
963 BOOL WINAPI EndPagePrinter(HANDLE hPrinter);
964 BOOL WINAPI AbortPrinter(HANDLE hPrinter);
965 BOOL WINAPI ReadPrinter(HANDLE hPrinter, LPVOID pBuf, DWORD cbBuf,
966 LPDWORD pNoBytesRead);
967 BOOL WINAPI EndDocPrinter(HANDLE hPrinter);
969 BOOL WINAPI AddJobA(HANDLE hPrinter, DWORD Level, LPBYTE pData, DWORD cbBuf,
971 BOOL WINAPI AddJobW(HANDLE hPrinter, DWORD Level, LPBYTE pData, DWORD cbBuf,
973 #define AddJob WINELIB_NAME_AW(AddJob)
975 BOOL WINAPI ScheduleJob(HANDLE hPrinter, DWORD JobID);
977 LONG WINAPI AdvancedDocumentPropertiesA(HWND hWnd, HANDLE hPrinter,
979 PDEVMODEA pDevModeOutput,
980 PDEVMODEA pDevModeInput);
981 LONG WINAPI AdvancedDocumentPropertiesW(HWND hWnd, HANDLE hPrinter,
983 PDEVMODEW pDevModeOutput,
984 PDEVMODEW pDevModeInput);
985 #define AdvancedDocumentProperties WINELIB_NAME_AW(AdvancedDocumentProperties)
987 DWORD WINAPI GetPrinterDataA(HANDLE hPrinter, LPSTR pValueName, LPDWORD pType,
988 LPBYTE pData, DWORD nSize, LPDWORD pcbNeeded);
989 DWORD WINAPI GetPrinterDataW(HANDLE hPrinter, LPWSTR pValueName, LPDWORD pType,
990 LPBYTE pData, DWORD nSize, LPDWORD pcbNeeded);
991 #define GetPrinterData WINELIB_NAME_AW(GetPrinterData)
993 DWORD WINAPI GetPrinterDataExA(HANDLE hPrinter, LPSTR pKeyName,
994 LPSTR pValueName, LPDWORD pType,
995 LPBYTE pData, DWORD nSize, LPDWORD pcbNeeded);
996 DWORD WINAPI GetPrinterDataExW(HANDLE hPrinter, LPWSTR pKeyName,
997 LPWSTR pValueName, LPDWORD pType,
998 LPBYTE pData, DWORD nSize, LPDWORD pcbNeeded);
999 #define GetPrinterDataEx WINELIB_NAME_AW(GetPrinterDataEx)
1001 DWORD WINAPI SetPrinterDataA(HANDLE hPrinter, LPSTR pValueName, DWORD Type,
1002 LPBYTE pData, DWORD cbData);
1003 DWORD WINAPI SetPrinterDataW(HANDLE hPrinter, LPWSTR pValueName, DWORD Type,
1004 LPBYTE pData, DWORD cbData);
1005 #define SetPrinterData WINELIB_NAME_AW(SetPrinterData)
1007 DWORD WINAPI SetPrinterDataExA(HANDLE hPrinter, LPSTR pKeyName,
1008 LPSTR pValueName, DWORD Type,
1009 LPBYTE pData, DWORD cbData);
1010 DWORD WINAPI SetPrinterDataExW(HANDLE hPrinter, LPWSTR pKeyName,
1011 LPWSTR pValueName, DWORD Type,
1012 LPBYTE pData, DWORD cbData);
1013 #define SetPrinterDataEx WINELIB_NAME_AW(SetPrinterDataEx)
1015 DWORD WINAPI WaitForPrinterChange(HANDLE hPrinter, DWORD Flags);
1016 HANDLE WINAPI FindFirstPrinterChangeNotification(HANDLE hPrinter,
1019 LPVOID pPrinterNotifyOptions);
1020 BOOL WINAPI FindNextPrinterChangeNotification(HANDLE hChange,
1023 LPVOID *ppPrinterNotifyInfo);
1024 BOOL WINAPI FreePrinterNotifyInfo(PPRINTER_NOTIFY_INFO pPrinterNotifyInfo);
1025 BOOL WINAPI FindClosePrinterChangeNotification(HANDLE hChange);
1027 DWORD WINAPI PrinterMessageBoxA(HANDLE hPrinter, DWORD Error, HWND hWnd,
1028 LPSTR pText, LPSTR pCaption, DWORD dwType);
1029 DWORD WINAPI PrinterMessageBoxW(HANDLE hPrinter, DWORD Error, HWND hWnd,
1030 LPWSTR pText, LPWSTR pCaption, DWORD dwType);
1031 #define PrinterMessageBox WINELIB_NAME_AW(PrinterMessageBox)
1033 BOOL WINAPI AddFormA(HANDLE hPrinter, DWORD Level, LPBYTE pForm);
1034 BOOL WINAPI AddFormW(HANDLE hPrinter, DWORD Level, LPBYTE pForm);
1035 #define AddForm WINELIB_NAME_AW(AddForm)
1037 BOOL WINAPI DeleteFormA(HANDLE hPrinter, LPSTR pFormName);
1038 BOOL WINAPI DeleteFormW(HANDLE hPrinter, LPWSTR pFormName);
1039 #define DeleteForm WINELIB_NAME_AW(DeleteForm)
1041 BOOL WINAPI GetFormA(HANDLE hPrinter, LPSTR pFormName, DWORD Level,
1042 LPBYTE pForm, DWORD cbBuf, LPDWORD pcbNeeded);
1043 BOOL WINAPI GetFormW(HANDLE hPrinter, LPWSTR pFormName, DWORD Level,
1044 LPBYTE pForm, DWORD cbBuf, LPDWORD pcbNeeded);
1045 #define GetForm WINELIB_NAME_AW(GetForm)
1047 BOOL WINAPI SetFormA(HANDLE hPrinter, LPSTR pFormName, DWORD Level,
1049 BOOL WINAPI SetFormW(HANDLE hPrinter, LPWSTR pFormName, DWORD Level,
1051 #define SetForm WINELIB_NAME_AW(SetForm)
1053 BOOL WINAPI EnumFormsA(HANDLE hPrinter, DWORD Level, LPBYTE pForm, DWORD cbBuf,
1054 LPDWORD pcbNeeded, LPDWORD pcReturned);
1055 BOOL WINAPI EnumFormsW(HANDLE hPrinter, DWORD Level, LPBYTE pForm, DWORD cbBuf,
1056 LPDWORD pcbNeeded, LPDWORD pcReturned);
1057 #define EnumForms WINELIB_NAME_AW(EnumForms)
1059 BOOL WINAPI EnumMonitorsA(LPSTR pName, DWORD Level, LPBYTE pMonitors,
1060 DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned);
1061 BOOL WINAPI EnumMonitorsW(LPWSTR pName, DWORD Level, LPBYTE pMonitors,
1062 DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned);
1063 #define EnumMonitors WINELIB_NAME_AW(EnumMonitors)
1065 BOOL WINAPI AddMonitorA(LPSTR pName, DWORD Level, LPBYTE pMonitors);
1066 BOOL WINAPI AddMonitorW(LPWSTR pName, DWORD Level, LPBYTE pMonitors);
1067 #define AddMonitor WINELIB_NAME_AW(AddMonitor)
1069 BOOL WINAPI DeleteMonitorA(LPSTR pName, LPSTR pEnvironment,
1070 LPSTR pMonitorName);
1071 BOOL WINAPI DeleteMonitorW(LPWSTR pName, LPWSTR pEnvironment,
1072 LPWSTR pMonitorName);
1073 #define DeleteMonitor WINELIB_NAME_AW(DeleteMonitor)
1075 BOOL WINAPI EnumPortsA(LPSTR pName, DWORD Level, LPBYTE pPorts,
1076 DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned);
1077 BOOL WINAPI EnumPortsW(LPWSTR pName, DWORD Level, LPBYTE pPorts,
1078 DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned);
1079 #define EnumPorts WINELIB_NAME_AW(EnumPorts)
1081 BOOL WINAPI AddPortA(LPSTR pName, HWND hWnd, LPSTR pMonitorName);
1082 BOOL WINAPI AddPortW(LPWSTR pName, HWND hWnd, LPWSTR pMonitorName);
1083 #define AddPort WINELIB_NAME_AW(AddPort)
1085 BOOL WINAPI ConfigurePortA(LPSTR pName, HWND hWnd, LPSTR pPortName);
1086 BOOL WINAPI ConfigurePortW(LPWSTR pName, HWND hWnd, LPWSTR pPortName);
1087 #define ConfigurePort WINELIB_NAME_AW(ConfigurePort)
1089 BOOL WINAPI DeletePortA(LPSTR pName, HWND hWnd, LPSTR pPortName);
1090 BOOL WINAPI DeletePortW(LPWSTR pName, HWND hWnd, LPWSTR pPortName);
1091 #define DeletePort WINELIB_NAME_AW(DeletePort)
1093 BOOL WINAPI SetPortA(LPSTR pName, LPSTR pPortName, DWORD dwLevel,
1095 BOOL WINAPI SetPortW(LPWSTR pName, LPWSTR pPortName, DWORD dwLevel,
1097 #define SetPort WINELIB_NAME_AW(SetPort)
1099 BOOL WINAPI AddPrinterConnectionA(LPSTR pName);
1100 BOOL WINAPI AddPrinterConnectionW(LPWSTR pName);
1101 #define AddPrinterConnection WINELIB_NAME_AW(AddPrinterConnection)
1103 BOOL WINAPI DeletePrinterConnectionA(LPSTR pName);
1104 BOOL WINAPI DeletePrinterConnectionW(LPWSTR pName);
1105 #define DeletePrinterConnection WINELIB_NAME_AW(DeletePrinterConnection)
1107 HANDLE WINAPI ConnectToPrinterDlg(HWND hwnd, DWORD Flags);
1109 BOOL WINAPI AddPrintProvidorA(LPSTR pName, DWORD Level, LPBYTE pProvidorInfo);
1110 BOOL WINAPI AddPrintProvidorW(LPWSTR pName, DWORD Level, LPBYTE pProvidorInfo);
1111 #define AddPrintProvidor WINELIB_NAME_AW(AddPrintProvidor)
1113 BOOL WINAPI DeletePrintProvidorA(LPSTR pName, LPSTR pEnvironment,
1114 LPSTR pPrintProvidorName);
1115 BOOL WINAPI DeletePrintProvidorW(LPWSTR pName, LPWSTR pEnvironment,
1116 LPWSTR pPrintProvidorName);
1117 #define DeletePrintProvidor WINELIB_NAME_AW(DeletePrintProvidor)
1119 DWORD WINAPI EnumPrinterDataExA(HANDLE hPrinter, LPCSTR pKeyName,
1120 LPBYTE pEnumValues, DWORD cbEnumValues,
1121 LPDWORD pcbEnumValues, LPDWORD pnEnumValues);
1122 DWORD WINAPI EnumPrinterDataExW(HANDLE hPrinter, LPCWSTR pKeyName,
1123 LPBYTE pEnumValues, DWORD cbEnumValues,
1124 LPDWORD pcbEnumValues, LPDWORD pnEnumValues);
1125 #define EnumPrinterDataEx WINELIB_NAME_AW(EnumPrinterDataEx)
1133 #endif /* __WINE_WINSPOOL_H */