64b267618559b93f7142502bc6e844fe89a33c21
[ira/wip.git] / librpc / idl / spoolss.idl
1 #include "idl_types.h"
2
3 /*
4   spoolss interface definitions
5 */
6 import "misc.idl", "security.idl", "winreg.idl";
7
8 [ uuid("12345678-1234-abcd-ef00-0123456789ab"),
9   version(1.0),
10   endpoint("ncacn_np:[\\pipe\\spoolss]"),
11   pointer_default(unique),
12   helpstring("Spooler SubSystem"),
13   helper("../librpc/ndr/ndr_spoolss_buf.h")
14 ] interface spoolss
15 {
16         typedef [v1_enum] enum winreg_Type winreg_Type;
17         typedef [gensize] struct {
18                 uint16 year;
19                 uint16 month;
20                 uint16 day_of_week;
21                 uint16 day;
22                 uint16 hour;
23                 uint16 minute;
24                 uint16 second;
25                 uint16 millisecond;
26         } spoolss_Time;
27
28         typedef struct {
29                 [value(ndr_size_spoolss_Time(time, ndr->iconv_convenience, ndr->flags))] uint32 size;
30                 [unique] spoolss_Time *time;
31         } spoolss_TimeCtr;
32
33         typedef enum {
34                 PROCESSOR_ARCHITECTURE_INTEL            = 0x0000,
35                 PROCESSOR_ARCHITECTURE_IA64             = 0x0006,
36                 PROCESSOR_ARCHITECTURE_AMD64            = 0x0009
37         } spoolss_ProcessorArchitecture;
38
39         typedef [v1_enum] enum {
40                 PROCESSOR_INTEL_386                     = 0x00000182,
41                 PROCESSOR_INTEL_486                     = 0x000001E6,
42                 PROCESSOR_INTEL_PENTIUM                 = 0x0000024A,
43                 PROCESSOR_INTEL_IA64                    = 0x00000898,
44                 PROCESSOR_AMD_X8664                     = 0x000022A0
45         } spoolss_ProcessorType;
46
47         typedef [v1_enum] enum {
48                 /* Windows 95, Windows 98, Windows Me, Windows NT4 */
49                 SPOOLSS_MAJOR_VERSION_NT4_95_98_ME      = 0x00000004,
50                 /* Windows 2000, Windows 2003, Windows XP */
51                 SPOOLSS_MAJOR_VERSION_2000_2003_XP      = 0x00000005,
52                 /* Windows Vista, Windows 2008 */
53                 SPOOLSS_MAJOR_VERSION_2008_VISTA        = 0x00000006
54         } spoolss_MajorVersion;
55
56         typedef [v1_enum] enum {
57                 /* Windows 2008, Windows Vista, Windows 2000, Windows NT4, Windows 95 */
58                 SPOOLSS_MINOR_VERSION_0                 = 0x00000000,
59                 /* Windows XP */
60                 SPOOLSS_MINOR_VERSION_XP                = 0x00000001,
61                 /* Windows 2003, Windows XP x64 */
62                 SPOOLSS_MINOR_VERSION_2003_XP64         = 0x00000002,
63                 /* Windows 98 */
64                 SPOOLSS_MINOR_VERSION_98                = 0x0000000a,
65                 /* Windows Me */
66                 SPOOLSS_MINOR_VERSION_ME                = 0x0000005a
67         } spoolss_MinorVersion;
68
69         const int PRINTER_STATUS_OK             = 0x00000000;
70
71         typedef bitmap {
72                 PRINTER_STATUS_PAUSED           = 0x00000001,
73                 PRINTER_STATUS_ERROR            = 0x00000002,
74                 PRINTER_STATUS_PENDING_DELETION = 0x00000004,
75                 PRINTER_STATUS_PAPER_JAM        = 0x00000008,
76                 PRINTER_STATUS_PAPER_OUT        = 0x00000010,
77                 PRINTER_STATUS_MANUAL_FEED      = 0x00000020,
78                 PRINTER_STATUS_PAPER_PROBLEM    = 0x00000040,
79                 PRINTER_STATUS_OFFLINE          = 0x00000080,
80                 PRINTER_STATUS_IO_ACTIVE        = 0x00000100,
81                 PRINTER_STATUS_BUSY             = 0x00000200,
82                 PRINTER_STATUS_PRINTING         = 0x00000400,
83                 PRINTER_STATUS_OUTPUT_BIN_FULL  = 0x00000800,
84                 PRINTER_STATUS_NOT_AVAILABLE    = 0x00001000,
85                 PRINTER_STATUS_WAITING          = 0x00002000,
86                 PRINTER_STATUS_PROCESSING       = 0x00004000,
87                 PRINTER_STATUS_INITIALIZING     = 0x00008000,
88                 PRINTER_STATUS_WARMING_UP       = 0x00010000,
89                 PRINTER_STATUS_TONER_LOW        = 0x00020000,
90                 PRINTER_STATUS_NO_TONER         = 0x00040000,
91                 PRINTER_STATUS_PAGE_PUNT        = 0x00080000,
92                 PRINTER_STATUS_USER_INTERVENTION= 0x00100000,
93                 PRINTER_STATUS_OUT_OF_MEMORY    = 0x00200000,
94                 PRINTER_STATUS_DOOR_OPEN        = 0x00400000,
95                 PRINTER_STATUS_SERVER_UNKNOWN   = 0x00800000,
96                 PRINTER_STATUS_POWER_SAVE       = 0x01000000
97         } spoolss_PrinterStatus;
98
99         /* JOB status codes. */
100
101         const int JOB_STATUS_QUEUED = 0x0000;
102
103         typedef [bitmap32bit] bitmap {
104                 JOB_STATUS_PAUSED               = 0x00000001,
105                 JOB_STATUS_ERROR                = 0x00000002,
106                 JOB_STATUS_DELETING             = 0x00000004,
107                 JOB_STATUS_SPOOLING             = 0x00000008,
108                 JOB_STATUS_PRINTING             = 0x00000010,
109                 JOB_STATUS_OFFLINE              = 0x00000020,
110                 JOB_STATUS_PAPEROUT             = 0x00000040,
111                 JOB_STATUS_PRINTED              = 0x00000080,
112                 JOB_STATUS_DELETED              = 0x00000100,
113                 JOB_STATUS_BLOCKED_DEVQ         = 0x00000200,
114                 JOB_STATUS_USER_INTERVENTION    = 0x00000400,
115                 JOB_STATUS_RESTART              = 0x00000800,
116                 JOB_STATUS_COMPLETE             = 0x00001000
117         } spoolss_JobStatus;
118
119         typedef [public,gensize] struct {
120                 [relative] nstring *printername;
121                 [relative] nstring *servername;
122                 uint32 cjobs;
123                 uint32 total_jobs;
124                 uint32 total_bytes;
125                 spoolss_Time time;
126                 uint32 global_counter;
127                 uint32 total_pages;
128                 uint32 version;
129                 uint32 free_build;
130                 uint32 spooling;
131                 uint32 max_spooling;
132                 uint32 session_counter;
133                 uint32 num_error_out_of_paper;
134                 uint32 num_error_not_ready;
135                 spoolss_JobStatus job_error;
136                 uint32 number_of_processors;
137                 spoolss_ProcessorType processor_type;
138                 uint32 high_part_total_bytes;
139                 uint32 change_id;
140                 WERROR last_error;
141                 spoolss_PrinterStatus status;
142                 uint32 enumerate_network_printers;
143                 uint32 c_setprinter;
144                 spoolss_ProcessorArchitecture processor_architecture;
145                 uint16 processor_level;
146                 uint32 ref_ic;
147                 uint32 reserved2;
148                 uint32 reserved3;
149         } spoolss_PrinterInfo0;
150
151         typedef [bitmap32bit] bitmap {
152                 DEVMODE_ORIENTATION             = 0x00000001,
153                 DEVMODE_PAPERSIZE               = 0x00000002,
154                 DEVMODE_PAPERLENGTH             = 0x00000004,
155                 DEVMODE_PAPERWIDTH              = 0x00000008,
156                 DEVMODE_SCALE                   = 0x00000010,
157                 DEVMODE_POSITION                = 0x00000020,
158                 DEVMODE_NUP                     = 0x00000040,
159                 DEVMODE_COPIES                  = 0x00000100,
160                 DEVMODE_DEFAULTSOURCE           = 0x00000200,
161                 DEVMODE_PRINTQUALITY            = 0x00000400,
162                 DEVMODE_COLOR                   = 0x00000800,
163                 DEVMODE_DUPLEX                  = 0x00001000,
164                 DEVMODE_YRESOLUTION             = 0x00002000,
165                 DEVMODE_TTOPTION                = 0x00004000,
166                 DEVMODE_COLLATE                 = 0x00008000,
167                 DEVMODE_FORMNAME                = 0x00010000,
168                 DEVMODE_LOGPIXELS               = 0x00020000,
169                 DEVMODE_BITSPERPEL              = 0x00040000,
170                 DEVMODE_PELSWIDTH               = 0x00080000,
171                 DEVMODE_PELSHEIGHT              = 0x00100000,
172                 DEVMODE_DISPLAYFLAGS            = 0x00200000,
173                 DEVMODE_DISPLAYFREQUENCY        = 0x00400000,
174                 DEVMODE_ICMMETHOD               = 0x00800000,
175                 DEVMODE_ICMINTENT               = 0x01000000,
176                 DEVMODE_MEDIATYPE               = 0x02000000,
177                 DEVMODE_DITHERTYPE              = 0x04000000,
178                 DEVMODE_PANNINGWIDTH            = 0x08000000,
179                 DEVMODE_PANNINGHEIGHT           = 0x10000000
180         } spoolss_DeviceModeFields;
181
182         typedef [enum16bit] enum {
183                 DMSPEC_NT3              = 0x320,
184                 DMSPEC_WIN95_98_ME      = 0x400,
185                 DMSPEC_NT4_AND_ABOVE    = 0x401
186         } spoolss_DeviceModeSpecVersion;
187
188         typedef [enum16bit] enum {
189                 DMORIENT_PORTRAIT       = 0x0001,
190                 DMORIENT_LANDSCAPE      = 0x0002
191         } spoolss_DeviceModeOrientation;
192
193         typedef [enum16bit] enum {
194                 DMPAPER_LETTER                  = 0x0001, /* Letter, 8 1/2 x 11 inches */
195                 DMPAPER_LETTERSMALL             = 0x0002, /* Letter Small, 8 1/2 x 11 inches */
196                 DMPAPER_TABLOID                 = 0x0003, /* Tabloid, 11 x 17 inches */
197                 DMPAPER_LEDGER                  = 0x0004, /* Ledger, 17 x 11 inches */
198                 DMPAPER_LEGAL                   = 0x0005, /* Legal, 8 1/2 x 14 inches */
199                 DMPAPER_STATEMENT               = 0x0006, /* Statement, 5 1/2 x 8 1/2 inches */
200                 DMPAPER_EXECUTIVE               = 0x0007, /* Executive, 7 1/4 x 10 1/2 inches */
201                 DMPAPER_A3                      = 0x0008, /* A3 sheet, 297 x 420 millimeters */
202                 DMPAPER_A4                      = 0x0009, /* A4 sheet, 210 x 297 millimeters */
203                 DMPAPER_A4SMALL                 = 0x000A, /* A4 small sheet, 210 x 297 millimeters */
204                 DMPAPER_A5                      = 0x000B, /* A5 sheet, 148 x 210 millimeters */
205                 DMPAPER_B4                      = 0x000C, /* B4 sheet, 250 x 354 millimeters */
206                 DMPAPER_B5                      = 0x000D, /* B5 sheet, 182 x 257-millimeter paper */
207                 DMPAPER_FOLIO                   = 0x000E, /* Folio, 8 1/2 x 13-inch paper */
208                 DMPAPER_QUARTO                  = 0x000F, /* Quarto, 215 x 275 millimeter paper */
209                 DMPAPER_10X14                   = 0x0010, /* 10 x 14-inch sheet */
210                 DMPAPER_11X17                   = 0x0011, /* 11 x 17-inch sheet */
211                 DMPAPER_NOTE                    = 0x0012, /* Note, 8 1/2 x 11-inches */
212                 DMPAPER_ENV_9                   = 0x0013, /* #9 Envelope, 3 7/8 x 8 7/8 inches */
213                 DMPAPER_ENV_10                  = 0x0014, /* #10 Envelope, 4 1/8 x 9 1/2 inches */
214                 DMPAPER_ENV_11                  = 0x0015, /* #11 Envelope, 4 1/2 x 10 3/8 inches */
215                 DMPAPER_ENV_12                  = 0x0016, /* #12 Envelope, 4 3/4 x 11 inches */
216                 DMPAPER_ENV_14                  = 0x0017, /* #14 Envelope, 5 x 11 1/2 inches */
217                 DMPAPER_CSHEET                  = 0x0018, /* C Sheet, 17 x 22 inches */
218                 DMPAPER_DSHEET                  = 0x0019, /* D Sheet, 22 x 34 inches */
219                 DMPAPER_ESHEET                  = 0x001A, /* E Sheet, 34 x 44 inches */
220                 DMPAPER_ENV_DL                  = 0x001B, /* DL Envelope, 110 x 220 millimeters */
221                 DMPAPER_ENV_C5                  = 0x001C, /* C5 Envelope, 162 x 229 millimeters */
222                 DMPAPER_ENV_C3                  = 0x001D, /* C3 Envelope, 324 x 458 millimeters */
223                 DMPAPER_ENV_C4                  = 0x001E, /* C4 Envelope, 229 x 324 millimeters */
224                 DMPAPER_ENV_C6                  = 0x001F, /* C6 Envelope, 114 x 162 millimeters */
225                 DMPAPER_ENV_C65                 = 0x0020, /* C65 Envelope, 114 x 229 millimeters */
226                 DMPAPER_ENV_B4                  = 0x0021, /* B4 Envelope, 250 x 353 millimeters */
227                 DMPAPER_ENV_B5                  = 0x0022, /* B5 Envelope, 176 x 250 millimeters */
228                 DMPAPER_ENV_B6                  = 0x0023, /* B6 Envelope, 176 x 125 millimeters */
229                 DMPAPER_ENV_ITALY               = 0x0024, /* Italy Envelope, 110 x 230 millimeters */
230                 DMPAPER_ENV_MONARCH             = 0x0025, /* Monarch Envelope, 3 7/8 x 7 1/2 inches */
231                 DMPAPER_ENV_PERSONAL            = 0x0026, /* 6 3/4 Envelope, 3 5/8 x 6 1/2 inches */
232                 DMPAPER_FANFOLD_US              = 0x0027, /* US Std Fanfold, 14 7/8 x 11 inches */
233                 DMPAPER_FANFOLD_STD_GERMAN      = 0x0028, /* German Std Fanfold, 8 1/2 x 12 inches */
234                 DMPAPER_FANFOLD_LGL_GERMAN      = 0x0029, /* German Legal Fanfold, 8 x 13 inches */
235                 DMPAPER_DBL_JAPANESE_POSTCARD   = 0x0045, /* Double Japanese Postcard, 200 x 148 millimeters */
236                 DMPAPER_A6                      = 0x0046, /* A6 sheet, 105 x 148 millimeters */
237                 DMPAPER_JENV_KAKU2              = 0x0047, /* Japanese Envelope Kaku #2 */
238                 DMPAPER_JENV_KAKU3              = 0x0048, /* Japanese Envelope Kaku #3 */
239                 DMPAPER_JENV_CHOU3              = 0x0049, /* Japanese Envelope Chou #3 */
240                 DMPAPER_JENV_CHOU4              = 0x004A, /* Japanese Envelope Chou #4 */
241                 DMPAPER_LETTER_ROTATED          = 0x004B, /* Letter Rotated, 11 by 8 1/2 inches */
242                 DMPAPER_A3_ROTATED              = 0x004C, /* A3 rotated sheet, 420 x 297 millimeters */
243                 DMPAPER_A4_ROTATED              = 0x004D, /* A4 rotated sheet, 297 x 210 millimeters */
244                 DMPAPER_A5_ROTATED              = 0x004E, /* A5 rotated sheet, 210 x 148 millimeters */
245                 DMPAPER_B4_JIS_ROTATED          = 0x004F, /* B4 (JIS) rotated sheet, 364 x 257 millimeters */
246                 DMPAPER_B5_JIS_ROTATED          = 0x0050, /* B5 (JIS) rotated sheet, 257 x 182 millimeters */
247                 DMPAPER_JAPANESE_POSTCARD_ROTATED = 0x0051, /* Japanese Postcard Rotated, 148 x 100 millimeters */
248                 DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED = 0x0052, /* Double Japanese Postcard Rotated, 148 x 200 millimeters */
249                 DMPAPER_A6_ROTATED              = 0x0053, /* A6 rotated sheet, 148 x 105 millimeters */
250                 DMPAPER_JENV_KAKU2_ROTATED      = 0x0054, /* Japanese Envelope Kaku #2 Rotated */
251                 DMPAPER_JENV_KAKU3_ROTATED      = 0x0055, /* Japanese Envelope Kaku #3 Rotated */
252                 DMPAPER_JENV_CHOU3_ROTATED      = 0x0056, /* Japanese Envelope Chou #3 Rotated */
253                 DMPAPER_JENV_CHOU4_ROTATED      = 0x0057, /* Japanese Envelope Chou #4 Rotated */
254                 DMPAPER_B6_JIS                  = 0x0058, /* B6 (JIS) sheet, 128 x 182 millimeters */
255                 DMPAPER_B6_JIS_ROTATED          = 0x0059, /* B6 (JIS) rotated sheet, 182 x 128 millimeters */
256                 DMPAPER_12X11                   = 0x005A, /* 12 x 11-inch sheet */
257                 DMPAPER_JENV_YOU4               = 0x005B, /* Japanese Envelope You #4 */
258                 DMPAPER_JENV_YOU4_ROTATED       = 0x005C, /* Japanese Envelope You #4 */
259                 DMPAPER_P16K                    = 0x005D, /* PRC 16K, 146 x 215 millimeters */
260                 DMPAPER_P32K                    = 0x005E, /* PRC 32K, 97 x 151 millimeters */
261                 DMPAPER_P32KBIG                 = 0x005F, /* PRC 32K(Big) 97 x 151 millimeters */
262                 DMPAPER_PENV_1                  = 0x0060, /* PRC Envelope #1, 102 by 165 millimeters */
263                 DMPAPER_PENV_2                  = 0x0061, /* PRC Envelope #2, 102 x 176 millimeters */
264                 DMPAPER_PENV_3                  = 0x0062, /* PRC Envelope #3, 125 x 176 millimeters */
265                 DMPAPER_PENV_4                  = 0x0063, /* PRC Envelope #4, 110 x 208 millimeters */
266                 DMPAPER_PENV_5                  = 0x0064, /* PRC Envelope #5, 110 x 220 millimeters */
267                 DMPAPER_PENV_6                  = 0x0065, /* PRC Envelope #6, 120 x 230 millimeters */
268                 DMPAPER_PENV_7                  = 0x0066, /* PRC Envelope #7, 160 x 230 millimeters */
269                 DMPAPER_PENV_8                  = 0x0067, /* PRC Envelope #8, 120 x 309 millimeters */
270                 DMPAPER_PENV_9                  = 0x0068, /* PRC Envelope #9, 229 x 324 millimeters */
271                 DMPAPER_PENV_10                 = 0x0069, /* PRC Envelope #10, 324 x 458 millimeters */
272                 DMPAPER_P16K_ROTATED            = 0x006A, /* PRC 16K Rotated, 215 x 146 millimeters */
273                 DMPAPER_P32K_ROTATED            = 0x006B, /* PRC 32K Rotated, 151 x 97 millimeters */
274                 DMPAPER_P32KBIG_ROTATED         = 0x006C, /* PRC 32K(Big) Rotated, 151 x 97 millimeters */
275                 DMPAPER_PENV_1_ROTATED          = 0x006D, /* PRC Envelope #1 Rotated, 165 x 102 millimeters */
276                 DMPAPER_PENV_2_ROTATED          = 0x006E, /* PRC Envelope #2 Rotated, 176 x 102 millimeters */
277                 DMPAPER_PENV_3_ROTATED          = 0x006F, /* PRC Envelope #3 Rotated, 176 x 125 millimeters */
278                 DMPAPER_PENV_4_ROTATED          = 0x0070, /* PRC Envelope #4 Rotated, 208 x 110 millimeters */
279                 DMPAPER_PENV_5_ROTATED          = 0x0071, /* PRC Envelope #5 Rotated, 220 x 110 millimeters */
280                 DMPAPER_PENV_6_ROTATED          = 0x0072, /* PRC Envelope #6 Rotated, 230 x 120 millimeters */
281                 DMPAPER_PENV_7_ROTATED          = 0x0073, /* PRC Envelope #7 Rotated, 230 x 160 millimeters */
282                 DMPAPER_PENV_8_ROTATED          = 0x0074, /* PRC Envelope #8 Rotated, 309 x 120 millimeters */
283                 DMPAPER_PENV_9_ROTATED          = 0x0075, /* PRC Envelope #9 Rotated, 324 x 229 millimeters */
284                 DMPAPER_PENV_10_ROTATED         = 0x0076 /* PRC Envelope #10 Rotated, 458 x 324 millimeters */
285         } spoolss_DeviceModePaperSize;
286
287         typedef [enum16bit] enum {
288                 DMBIN_UPPER             = 0x0001,
289                 DMBIN_LOWER             = 0x0002,
290                 DMBIN_MIDDLE            = 0x0003,
291                 DMBIN_MANUAL            = 0x0004,
292                 DMBIN_ENVELOPE          = 0x0005,
293                 DMBIN_ENVMANUAL         = 0x0006,
294                 DMBIN_AUTO              = 0x0007,
295                 DMBIN_TRACTOR           = 0x0008,
296                 DMBIN_SMALLFMT          = 0x0009,
297                 DMBIN_LARGEFMT          = 0x000a,
298                 DMBIN_LARGECAPACITY     = 0x000b,
299                 DMBIN_CASSETTE          = 0x000e,
300                 DMBIN_FORMSOURCE        = 0x000f
301         } spoolss_DeviceModeDefaultSource;
302
303         typedef [enum16bit] enum {
304                 DMRES_HIGH              = 0xfffc,
305                 DMRES_MEDIUM            = 0xfffd,
306                 DMRES_LOW               = 0xfffe,
307                 DMRES_DRAFT             = 0xffff
308         } spoolss_DeviceModePrintQuality;
309
310         typedef [enum16bit] enum {
311                 DMRES_MONOCHROME         = 0x0001,
312                 DMRES_COLOR              = 0x0002
313         } spoolss_DeviceModeColor;
314
315         typedef [enum16bit] enum {
316                 DMDUP_SIMPLEX           = 0x0001,
317                 DMDUP_VERTICAL          = 0x0002,
318                 DMDUP_HORIZONTAL        = 0x0003
319         } spoolss_DeviceModeDuplex;
320
321         typedef [enum16bit] enum {
322                 DMTT_BITMAP             = 0x0001,
323                 DMTT_DOWNLOAD           = 0x0002,
324                 DMTT_SUBDEV             = 0x0003,
325                 DMTT_DOWNLOAD_OUTLINE   = 0x0004
326         } spoolss_DeviceModeTTOption;
327
328         typedef [enum16bit] enum {
329                 DMCOLLATE_FALSE         = 0x0000,
330                 DMCOLLATE_TRUE          = 0x0001
331         } spoolss_DeviceModeCollate;
332
333         typedef [v1_enum] enum {
334                 DMNUP_SYSTEM            = 0x00000001,
335                 DMNUP_ONEUP             = 0x00000002
336         } spoolss_DeviceModeNUp;
337
338         typedef [v1_enum] enum {
339                 DMICMMETHOD_NONE        = 0x00000001,
340                 DMICMMETHOD_SYSTEM      = 0x00000002,
341                 DMICMMETHOD_DRIVER      = 0x00000003,
342                 DMICMMETHOD_DEVICE      = 0x00000004
343         } spoolss_DeviceModeICMMethod;
344
345         typedef [v1_enum] enum {
346                 DMICM_SATURATE          = 0x00000001,
347                 DMICM_CONTRAST          = 0x00000002,
348                 DMICM_COLORIMETRIC      = 0x00000003,
349                 DMICM_ABS_COLORIMETRIC  = 0x00000004
350         } spoolss_DeviceModeICMIntent;
351
352         typedef [v1_enum] enum {
353                 DMMEDIA_STANDARD        = 0x00000001,
354                 DMMEDIA_TRANSPARENCY    = 0x00000002,
355                 DMMEDIA_GLOSSY          = 0x00000003
356         } spoolss_DeviceModeMediaType;
357
358         typedef [v1_enum] enum {
359                 DMDITHER_NONE           = 0x00000001,
360                 DMDITHER_COARSE         = 0x00000002,
361                 DMDITHER_FINE           = 0x00000003,
362                 DMDITHER_LINEART        = 0x00000004,
363                 DMDITHER_ERRORDIFFUSION = 0x00000005,
364                 DMDITHER_RESERVED6      = 0x00000006,
365                 DMDITHER_RESERVED7      = 0x00000007,
366                 DMDITHER_RESERVED8      = 0x00000008,
367                 DMDITHER_RESERVED9      = 0x00000009,
368                 DMDITHER_GRAYSCALE      = 0x0000000A
369         } spoolss_DeviceModeDitherType;
370
371         const int MAXDEVICENAME = 32;
372
373         typedef [public,gensize] struct {
374                 [charset(UTF16)] uint16 devicename[MAXDEVICENAME];
375                 spoolss_DeviceModeSpecVersion specversion;
376                 uint16 driverversion;
377                 uint16 size;
378                 [value(r->driverextra_data.length)] uint16 __driverextra_length;
379                 spoolss_DeviceModeFields fields;
380                 spoolss_DeviceModeOrientation orientation;
381                 spoolss_DeviceModePaperSize papersize;
382                 uint16 paperlength;
383                 uint16 paperwidth;
384                 uint16 scale;
385                 uint16 copies;
386                 spoolss_DeviceModeDefaultSource defaultsource;
387                 spoolss_DeviceModePrintQuality printquality;
388                 spoolss_DeviceModeColor color;
389                 spoolss_DeviceModeDuplex duplex;
390                 uint16 yresolution;
391                 spoolss_DeviceModeTTOption ttoption;
392                 spoolss_DeviceModeCollate collate;
393                 [charset(UTF16)] uint16 formname[MAXDEVICENAME];
394                 uint16 logpixels; /* reserved */
395                 uint32 bitsperpel; /* reserved */
396                 uint32 pelswidth; /* reserved */
397                 uint32 pelsheight; /* reserved */
398                 spoolss_DeviceModeNUp displayflags;
399                 uint32 displayfrequency; /* reserved */
400                 spoolss_DeviceModeICMMethod icmmethod;
401                 spoolss_DeviceModeICMIntent icmintent;
402                 spoolss_DeviceModeMediaType mediatype;
403                 spoolss_DeviceModeDitherType dithertype;
404                 uint32 reserved1;
405                 uint32 reserved2;
406                 uint32 panningwidth; /* reserved */
407                 uint32 panningheight; /* reserved */
408                 [subcontext_size(__driverextra_length),subcontext(0),flag(NDR_REMAINING)] DATA_BLOB driverextra_data;
409         } spoolss_DeviceMode;
410
411         typedef [public] bitmap {
412                 PRINTER_ENUM_DEFAULT     = 0x00000001,
413                 PRINTER_ENUM_LOCAL       = 0x00000002,
414                 PRINTER_ENUM_CONNECTIONS = 0x00000004,
415                 PRINTER_ENUM_FAVORITE    = 0x00000004,
416                 PRINTER_ENUM_NAME        = 0x00000008,
417                 PRINTER_ENUM_REMOTE      = 0x00000010,
418                 PRINTER_ENUM_SHARED      = 0x00000020,
419                 PRINTER_ENUM_NETWORK     = 0x00000040,
420                 PRINTER_ENUM_EXPAND      = 0x00004000,
421                 PRINTER_ENUM_CONTAINER   = 0x00008000,
422                 PRINTER_ENUM_ICON1       = 0x00010000,
423                 PRINTER_ENUM_ICON2       = 0x00020000,
424                 PRINTER_ENUM_ICON3       = 0x00040000,
425                 PRINTER_ENUM_ICON4       = 0x00080000,
426                 PRINTER_ENUM_ICON5       = 0x00100000,
427                 PRINTER_ENUM_ICON6       = 0x00200000,
428                 PRINTER_ENUM_ICON7       = 0x00400000,
429                 PRINTER_ENUM_ICON8       = 0x00800000,
430                 PRINTER_ENUM_HIDE        = 0x01000000
431         } spoolss_EnumPrinterFlags;
432
433         const int PRINTER_ENUM_ICONMASK = (PRINTER_ENUM_ICON1 |
434                                            PRINTER_ENUM_ICON2 |
435                                            PRINTER_ENUM_ICON3 |
436                                            PRINTER_ENUM_ICON4 |
437                                            PRINTER_ENUM_ICON5 |
438                                            PRINTER_ENUM_ICON6 |
439                                            PRINTER_ENUM_ICON7 |
440                                            PRINTER_ENUM_ICON8); /* 0x00ff0000 */
441
442         typedef bitmap {
443                 PRINTER_ATTRIBUTE_QUEUED                = 0x00000001,
444                 PRINTER_ATTRIBUTE_DIRECT                = 0x00000002,
445                 PRINTER_ATTRIBUTE_DEFAULT               = 0x00000004,
446                 PRINTER_ATTRIBUTE_SHARED                = 0x00000008,
447                 PRINTER_ATTRIBUTE_NETWORK               = 0x00000010,
448                 PRINTER_ATTRIBUTE_HIDDEN                = 0x00000020,
449                 PRINTER_ATTRIBUTE_LOCAL                 = 0x00000040,
450                 PRINTER_ATTRIBUTE_ENABLE_DEVQ           = 0x00000080,
451                 PRINTER_ATTRIBUTE_KEEPPRINTEDJOBS       = 0x00000100,
452                 PRINTER_ATTRIBUTE_DO_COMPLETE_FIRST     = 0x00000200,
453                 PRINTER_ATTRIBUTE_WORK_OFFLINE          = 0x00000400,
454                 PRINTER_ATTRIBUTE_ENABLE_BIDI           = 0x00000800,
455                 PRINTER_ATTRIBUTE_RAW_ONLY              = 0x00001000,
456                 PRINTER_ATTRIBUTE_PUBLISHED             = 0x00002000,
457                 PRINTER_ATTRIBUTE_FAX                   = 0x00004000,
458                 PRINTER_ATTRIBUTE_TS                    = 0x00008000
459         } spoolss_PrinterAttributes;
460
461         typedef [public,gensize] struct {
462                 spoolss_PrinterAttributes flags;
463                 [relative] nstring *description;
464                 [relative] nstring *name;
465                 [relative] nstring *comment;
466         } spoolss_PrinterInfo1;
467
468         typedef [public,gensize] struct {
469                 [relative] nstring *servername;
470                 [relative] nstring *printername;
471                 [relative] nstring *sharename;
472                 [relative] nstring *portname;
473                 [relative] nstring *drivername;
474                 [relative] nstring *comment;
475                 [relative] nstring *location;
476                 [relative,subcontext(0)] spoolss_DeviceMode *devmode;
477                 [relative] nstring *sepfile;
478                 [relative] nstring *printprocessor;
479                 [relative] nstring *datatype;
480                 [relative] nstring *parameters;
481                 [relative,subcontext(0)] security_descriptor *secdesc;
482                 spoolss_PrinterAttributes attributes;
483                 [range(0,99)] uint32 priority;
484                 uint32 defaultpriority;
485                 uint32 starttime;
486                 uint32 untiltime;
487                 spoolss_PrinterStatus status;
488                 uint32 cjobs;
489                 uint32 averageppm;
490         } spoolss_PrinterInfo2;
491
492         typedef [public,gensize] struct {
493                 [relative,subcontext(0)] security_descriptor *secdesc;
494         } spoolss_PrinterInfo3;
495
496         typedef [public,gensize] struct {
497                 [relative] nstring *printername;
498                 [relative] nstring *servername;
499                 spoolss_PrinterAttributes attributes;
500         } spoolss_PrinterInfo4;
501
502         typedef [public,gensize] struct {
503                 [relative] nstring *printername;
504                 [relative] nstring *portname;
505                 spoolss_PrinterAttributes attributes;
506                 uint32 device_not_selected_timeout;
507                 uint32 transmission_retry_timeout;
508         } spoolss_PrinterInfo5;
509
510         typedef [public,gensize] struct {
511                 spoolss_PrinterStatus status;
512         } spoolss_PrinterInfo6;
513
514         typedef bitmap {
515                 DSPRINT_PUBLISH         = 0x00000001,
516                 DSPRINT_UPDATE          = 0x00000002,
517                 DSPRINT_UNPUBLISH       = 0x00000004,
518                 DSPRINT_REPUBLISH       = 0x00000008,
519                 DSPRINT_PENDING         = 0x80000000
520         } spoolss_DsPrintAction;
521
522         typedef [public,gensize] struct {
523                 [relative] nstring *guid; /* text form of printer guid */
524                 spoolss_DsPrintAction action;
525         } spoolss_PrinterInfo7;
526
527         typedef struct {
528                 [relative,subcontext(0)] spoolss_DeviceMode *devmode;
529         } spoolss_DeviceModeInfo;
530
531         typedef [nodiscriminant,relative_base,public,gensize] union {
532                 [case(0)] spoolss_PrinterInfo0 info0;
533                 [case(1)] spoolss_PrinterInfo1 info1;
534                 [case(2)] spoolss_PrinterInfo2 info2;
535                 [case(3)] spoolss_PrinterInfo3 info3;
536                 [case(4)] spoolss_PrinterInfo4 info4;
537                 [case(5)] spoolss_PrinterInfo5 info5;
538                 [case(6)] spoolss_PrinterInfo6 info6;
539                 [case(7)] spoolss_PrinterInfo7 info7;
540                 [case(8)] spoolss_DeviceModeInfo info8;
541                 [case(9)] spoolss_DeviceModeInfo info9;
542                 [default];
543         } spoolss_PrinterInfo;
544
545         /******************/
546         /* Function: 0x00 */
547         /* we are using this as internal parsing code */
548         [public,noopnum,noprint] WERROR _spoolss_EnumPrinters(
549                 [in] spoolss_EnumPrinterFlags flags,
550                 [in,unique] [string,charset(UTF16)] uint16 *server,
551                 [in] uint32 level,
552                 [in,unique] DATA_BLOB *buffer,
553                 [in] uint32 offered,
554                 [out,unique] DATA_BLOB *info,
555                 [out,ref] uint32 *needed,
556                 [out,ref] uint32 *count
557         );
558         [public,noopnum,noprint] void __spoolss_EnumPrinters(
559                 [in] uint32 level,
560                 [in] uint32 count,
561                 [out,switch_is(level)] spoolss_PrinterInfo info[count]
562         );
563         [nopull,nopush] WERROR spoolss_EnumPrinters(
564                 [in] spoolss_EnumPrinterFlags flags,
565                 [in,unique] [string,charset(UTF16)] uint16 *server,
566                 [in] uint32 level,
567                 [in,unique] DATA_BLOB *buffer,
568                 [in] uint32 offered,
569                 /* what we have here is a subcontext containing an array of no discriminant unions
570                  * and the array has no size in front
571                  */
572                 [out,ref] uint32 *count,
573                 [out,ref,switch_is(level),size_is(,*count)] spoolss_PrinterInfo **info,
574                 [out,ref] uint32 *needed
575         );
576
577         /******************/
578         /* Function: 0x01 */
579         typedef struct {
580                 [value(_ndr_size_spoolss_DeviceMode(devmode, ndr->iconv_convenience, ndr->flags))] uint32 _ndr_size;
581                 [subcontext(4),subcontext_size(_ndr_size)] spoolss_DeviceMode *devmode;
582         } spoolss_DevmodeContainer;
583
584         [public] WERROR spoolss_OpenPrinter(
585                 [in,unique] [string,charset(UTF16)] uint16 *printername,
586                 [in,unique] [string,charset(UTF16)] uint16 *datatype,
587                 [in] spoolss_DevmodeContainer devmode_ctr,
588                 [in] spoolss_AccessRights access_mask,
589                 [out,ref] policy_handle *handle
590         );
591
592         /******************/
593         /* Function: 0x02 */
594
595         typedef [public,gensize] struct {
596                 uint32 job_id;
597                 [relative] nstring *printer_name;
598                 [relative] nstring *server_name;
599                 [relative] nstring *user_name;
600                 [relative] nstring *document_name;
601                 [relative] nstring *data_type;
602                 [relative] nstring *text_status;
603                 spoolss_JobStatus status;
604                 [range(0,99)] uint32 priority;
605                 uint32 position;
606                 uint32 total_pages;
607                 uint32 pages_printed;
608                 spoolss_Time submitted;
609         } spoolss_JobInfo1;
610
611         typedef [public,gensize] struct {
612                 uint32 job_id;
613                 [relative] nstring *printer_name;
614                 [relative] nstring *server_name;
615                 [relative] nstring *user_name;
616                 [relative] nstring *document_name;
617                 [relative] nstring *notify_name;
618                 [relative] nstring *data_type;
619                 [relative] nstring *print_processor;
620                 [relative] nstring *parameters;
621                 [relative] nstring *driver_name;
622                 [relative] spoolss_DeviceMode *devmode;
623                 [relative] nstring *text_status;
624                 [relative] security_descriptor *secdesc;
625                 spoolss_JobStatus status;
626                 [range(0,99)] uint32 priority;
627                 uint32 position;
628                 uint32 start_time;
629                 uint32 until_time;
630                 uint32 total_pages;
631                 uint32 size;
632                 spoolss_Time submitted;
633                 uint32 time;
634                 uint32 pages_printed;
635         } spoolss_JobInfo2;
636
637         typedef [public,gensize] struct {
638                 uint32 job_id;
639                 uint32 next_job_id;
640                 uint32 reserved;
641         } spoolss_JobInfo3;
642
643         typedef [public,gensize] struct {
644                 uint32 job_id;
645                 [relative] nstring *printer_name;
646                 [relative] nstring *server_name;
647                 [relative] nstring *user_name;
648                 [relative] nstring *document_name;
649                 [relative] nstring *notify_name;
650                 [relative] nstring *data_type;
651                 [relative] nstring *print_processor;
652                 [relative] nstring *parameters;
653                 [relative] nstring *driver_name;
654                 [relative] spoolss_DeviceMode *devmode;
655                 [relative] nstring *text_status;
656                 [relative] security_descriptor *secdesc;
657                 spoolss_JobStatus status;
658                 [range(0,99)] uint32 priority;
659                 uint32 position;
660                 uint32 start_time;
661                 uint32 until_time;
662                 uint32 total_pages;
663                 uint32 size;
664                 spoolss_Time submitted;
665                 uint32 time;
666                 uint32 pages_printed;
667                 uint32 size_high;
668         } spoolss_JobInfo4;
669
670         typedef [nodiscriminant,relative_base,public,gensize] union {
671                 [case(1)] spoolss_JobInfo1 info1;
672                 [case(2)] spoolss_JobInfo2 info2;
673                 [case(3)] spoolss_JobInfo3 info3;
674                 [case(4)] spoolss_JobInfo4 info4;
675                 [default];
676         } spoolss_JobInfo;
677
678         typedef struct {
679                 uint32 job_id;
680                 [string,charset(UTF16)] uint16 *printer_name;
681                 [string,charset(UTF16)] uint16 *server_name;
682                 [string,charset(UTF16)] uint16 *user_name;
683                 [string,charset(UTF16)] uint16 *document_name;
684                 [string,charset(UTF16)] uint16 *data_type;
685                 [string,charset(UTF16)] uint16 *text_status;
686                 spoolss_JobStatus status;
687                 [range(0,99)] uint32 priority;
688                 uint32 position;
689                 uint32 total_pages;
690                 uint32 pages_printed;
691                 spoolss_Time submitted;
692         } spoolss_SetJobInfo1;
693
694         typedef struct {
695                 uint32 job_id;
696                 [string,charset(UTF16)] uint16 *printer_name;
697                 [string,charset(UTF16)] uint16 *server_name;
698                 [string,charset(UTF16)] uint16 *user_name;
699                 [string,charset(UTF16)] uint16 *document_name;
700                 [string,charset(UTF16)] uint16 *notify_name;
701                 [string,charset(UTF16)] uint16 *data_type;
702                 [string,charset(UTF16)] uint16 *print_processor;
703                 [string,charset(UTF16)] uint16 *parameters;
704                 [string,charset(UTF16)] uint16 *driver_name;
705                 uint32 _devmode_ptr; /* pointer to truncated devicemode */
706                 [string,charset(UTF16)] uint16 *text_status;
707                 uint32 _secdesc_ptr;
708                 spoolss_JobStatus status;
709                 [range(0,99)] uint32 priority;
710                 uint32 position;
711                 uint32 start_time;
712                 uint32 until_time;
713                 uint32 total_pages;
714                 uint32 size;
715                 spoolss_Time submitted;
716                 uint32 time;
717                 uint32 pages_printed;
718         } spoolss_SetJobInfo2;
719
720         typedef struct {
721                 uint32 job_id;
722                 [string,charset(UTF16)] uint16 *printer_name;
723                 [string,charset(UTF16)] uint16 *server_name;
724                 [string,charset(UTF16)] uint16 *user_name;
725                 [string,charset(UTF16)] uint16 *document_name;
726                 [string,charset(UTF16)] uint16 *notify_name;
727                 [string,charset(UTF16)] uint16 *data_type;
728                 [string,charset(UTF16)] uint16 *print_processor;
729                 [string,charset(UTF16)] uint16 *parameters;
730                 [string,charset(UTF16)] uint16 *driver_name;
731                 uint32 _devmode_ptr; /* pointer to truncated devicemode */
732                 [string,charset(UTF16)] uint16 *text_status;
733                 uint32 _secdesc_ptr;
734                 spoolss_JobStatus status;
735                 [range(0,99)] uint32 priority;
736                 uint32 position;
737                 uint32 start_time;
738                 uint32 until_time;
739                 uint32 total_pages;
740                 uint32 size;
741                 spoolss_Time submitted;
742                 uint32 time;
743                 uint32 pages_printed;
744                 uint32 size_high;
745         } spoolss_SetJobInfo4;
746
747         typedef [public] union {
748                 [case(1)] spoolss_SetJobInfo1 *info1;
749                 [case(2)] spoolss_SetJobInfo2 *info2;
750                 [case(3)] spoolss_JobInfo3    *info3;
751                 [case(4)] spoolss_SetJobInfo4 *info4;
752                 [default];
753         } spoolss_SetJobInfo;
754
755         typedef struct {
756                 uint32 level;
757                 [switch_is(level)] spoolss_SetJobInfo info;
758         } spoolss_JobInfoContainer;
759
760         typedef [v1_enum] enum {
761                 SPOOLSS_JOB_CONTROL_PAUSE               = 1,
762                 SPOOLSS_JOB_CONTROL_RESUME              = 2,
763                 SPOOLSS_JOB_CONTROL_CANCEL              = 3,
764                 SPOOLSS_JOB_CONTROL_RESTART             = 4,
765                 SPOOLSS_JOB_CONTROL_DELETE              = 5,
766                 SPOOLSS_JOB_CONTROL_SEND_TO_PRINTER     = 6,
767                 SPOOLSS_JOB_CONTROL_LAST_PAGE_EJECTED   = 7,
768                 SPOOLSS_JOB_CONTROL_RETAIN              = 8,
769                 SPOOLSS_JOB_CONTROL_RELEASE             = 9
770         } spoolss_JobControl;
771
772         WERROR spoolss_SetJob(
773                 [in,ref] policy_handle *handle,
774                 [in] uint32 job_id,
775                 [in,unique] spoolss_JobInfoContainer *ctr,
776                 [in] spoolss_JobControl command
777         );
778
779         /******************/
780         /* Function: 0x03 */
781         WERROR spoolss_GetJob(
782                 [in,ref] policy_handle *handle,
783                 [in]     uint32 job_id,
784                 [in]     uint32 level,
785                 [in,unique] DATA_BLOB *buffer,
786                 [in]     uint32 offered,
787                 [out,unique,subcontext(4),subcontext_size(offered),switch_is(level)] spoolss_JobInfo *info,
788                 [out,ref] uint32 *needed
789         );
790
791         /******************/
792         /* Function: 0x04 */
793         [public,noopnum,noprint] WERROR _spoolss_EnumJobs(
794                 [in,ref] policy_handle *handle,
795                 [in]     uint32 firstjob,
796                 [in]     uint32 numjobs,
797                 [in]     uint32 level,
798                 [in,unique] DATA_BLOB *buffer,
799                 [in]     uint32 offered,
800                 [out,unique] DATA_BLOB *info,
801                 [out,ref] uint32 *needed,
802                 [out,ref] uint32 *count
803         );
804         [public,noopnum,noprint] void __spoolss_EnumJobs(
805                 [in] uint32 level,
806                 [in] uint32 count,
807                 [out,switch_is(level)] spoolss_JobInfo info[count]
808         );
809         [nopull,nopush] WERROR spoolss_EnumJobs(
810                 [in,ref] policy_handle *handle,
811                 [in]     uint32 firstjob,
812                 [in]     uint32 numjobs,
813                 [in]     uint32 level,
814                 [in,unique] DATA_BLOB *buffer,
815                 [in]     uint32 offered,
816                 [out,ref] uint32 *count,
817                 [out,ref,switch_is(level),size_is(,*count)] spoolss_JobInfo **info,
818                 [out,ref] uint32 *needed
819         );
820
821         /******************/
822         /* Function: 0x05 */
823         WERROR spoolss_AddPrinter(
824                 [in,unique] [string,charset(UTF16)] uint16 *server,
825                 [in,ref] spoolss_SetPrinterInfoCtr *info_ctr,
826                 [in,ref] spoolss_DevmodeContainer *devmode_ctr,
827                 [in,ref] sec_desc_buf *secdesc_ctr,
828                 [out,ref] policy_handle *handle
829         );
830
831         /******************/
832         /* Function: 0x06 */
833         WERROR spoolss_DeletePrinter(
834                 [in] policy_handle *handle
835         );
836
837         /******************/
838         /* Function: 0x07 */
839         typedef [v1_enum] enum {
840                 SPOOLSS_PRINTER_CONTROL_UNPAUSE    = 0,
841                 SPOOLSS_PRINTER_CONTROL_PAUSE      = 1,
842                 SPOOLSS_PRINTER_CONTROL_RESUME     = 2,
843                 SPOOLSS_PRINTER_CONTROL_PURGE      = 3,
844                 SPOOLSS_PRINTER_CONTROL_SET_STATUS = 4
845         } spoolss_PrinterControl;
846
847         typedef struct {
848                 [string,charset(UTF16)] uint16 *servername;
849                 [string,charset(UTF16)] uint16 *printername;
850                 uint32 cjobs;
851                 uint32 total_jobs;
852                 uint32 total_bytes;
853                 spoolss_Time time;
854                 uint32 global_counter;
855                 uint32 total_pages;
856                 uint32 version;
857                 uint32 free_build;
858                 uint32 spooling;
859                 uint32 max_spooling;
860                 uint32 session_counter;
861                 uint32 num_error_out_of_paper;
862                 uint32 num_error_not_ready;
863                 uint32 job_error;
864                 uint32 number_of_processors;
865                 spoolss_ProcessorType processor_type;
866                 uint32 high_part_total_bytes;
867                 uint32 change_id;
868                 WERROR last_error;
869                 uint32 status;
870                 uint32 enumerate_network_printers;
871                 uint32 c_setprinter;
872                 spoolss_ProcessorArchitecture processor_architecture;
873                 uint16 processor_level;
874                 uint32 ref_ic;
875                 uint32 reserved2;
876                 uint32 reserved3;
877         } spoolss_SetPrinterInfo0;
878
879         typedef struct {
880                 spoolss_PrinterAttributes flags;
881                 [string,charset(UTF16)] uint16 *description;
882                 [string,charset(UTF16)] uint16 *name;
883                 [string,charset(UTF16)] uint16 *comment;
884         } spoolss_SetPrinterInfo1;
885
886         typedef struct {
887                 [string,charset(UTF16)] uint16 *servername;
888                 [string,charset(UTF16)] uint16 *printername;
889                 [string,charset(UTF16)] uint16 *sharename;
890                 [string,charset(UTF16)] uint16 *portname;
891                 [string,charset(UTF16)] uint16 *drivername;
892                 [string,charset(UTF16)] uint16 *comment;
893                 [string,charset(UTF16)] uint16 *location;
894                 [subcontext(0)] spoolss_DeviceMode *devmode;
895                 [string,charset(UTF16)] uint16 *sepfile;
896                 [string,charset(UTF16)] uint16 *printprocessor;
897                 [string,charset(UTF16)] uint16 *datatype;
898                 [string,charset(UTF16)] uint16 *parameters;
899                 [subcontext(0)] security_descriptor *secdesc;
900                 spoolss_PrinterAttributes attributes;
901                 [range(0,99)] uint32 priority;
902                 uint32 defaultpriority;
903                 uint32 starttime;
904                 uint32 untiltime;
905                 spoolss_PrinterStatus status;
906                 uint32 cjobs;
907                 uint32 averageppm;
908         } spoolss_SetPrinterInfo2;
909
910         typedef struct {
911                 uint32 sec_desc_ptr;
912         } spoolss_SetPrinterInfo3;
913
914         typedef struct {
915                 [string,charset(UTF16)] uint16 *printername;
916                 [string,charset(UTF16)] uint16 *servername;
917                 spoolss_PrinterAttributes attributes;
918         } spoolss_SetPrinterInfo4;
919
920         typedef struct {
921                 [string,charset(UTF16)] uint16 *printername;
922                 [string,charset(UTF16)] uint16 *portname;
923                 spoolss_PrinterAttributes attributes;
924                 uint32 device_not_selected_timeout;
925                 uint32 transmission_retry_timeout;
926         } spoolss_SetPrinterInfo5;
927
928         typedef struct {
929                 spoolss_PrinterStatus status;
930         } spoolss_SetPrinterInfo6;
931
932         typedef struct {
933                 [string,charset(UTF16)] uint16 *guid; /* text form of printer guid */
934                 spoolss_DsPrintAction action;
935         } spoolss_SetPrinterInfo7;
936
937         typedef [switch_type(uint32)] union {
938                 [case(0)] spoolss_SetPrinterInfo0 *info0;
939                 [case(1)] spoolss_SetPrinterInfo1 *info1;
940                 [case(2)] spoolss_SetPrinterInfo2 *info2;
941                 [case(3)] spoolss_SetPrinterInfo3 *info3;
942                 [case(4)] spoolss_SetPrinterInfo4 *info4;
943                 [case(5)] spoolss_SetPrinterInfo5 *info5;
944                 [case(6)] spoolss_SetPrinterInfo6 *info6;
945                 [case(7)] spoolss_SetPrinterInfo7 *info7;
946                 [case(8)] spoolss_DeviceModeInfo *info8;
947                 [case(9)] spoolss_DeviceModeInfo *info9;
948                 [default];
949         } spoolss_SetPrinterInfo;
950
951         typedef struct {
952                 uint32 level;
953                 [switch_is(level)] spoolss_SetPrinterInfo info;
954         } spoolss_SetPrinterInfoCtr;
955
956         WERROR spoolss_SetPrinter(
957                 [in,ref] policy_handle *handle,
958                 [in,ref] spoolss_SetPrinterInfoCtr *info_ctr,
959                 [in,ref] spoolss_DevmodeContainer *devmode_ctr,
960                 [in,ref] sec_desc_buf *secdesc_ctr,
961                 [in] spoolss_PrinterControl command
962         );
963
964         /******************/
965         /* Function: 0x08 */
966         [public] WERROR spoolss_GetPrinter(
967                 [in,ref] policy_handle *handle,
968                 [in]     uint32 level,
969                 [in,unique] DATA_BLOB *buffer,
970                 [in]     uint32 offered,
971                 [out,unique,subcontext(4),subcontext_size(offered),switch_is(level)] spoolss_PrinterInfo *info,
972                 [out,ref] uint32 *needed
973         );
974
975         /******************/
976         /* Function: 0x09 */
977
978         typedef [public] struct {
979                 [value((ndr_size_spoolss_StringArray(r, ndr->iconv_convenience, ndr->flags)-4)/2)] uint32 _ndr_size;
980                 /*[subcontext(0),subcontext_size(_ndr_size*2)]*/ nstring_array string;
981         } spoolss_StringArray;
982
983         typedef [public,nopush,nopull] struct {
984                 [value((ndr_size_spoolss_StringArray2(r, ndr->iconv_convenience, ndr->flags)-4)/2)] uint32 _ndr_size;
985                 [subcontext(0),subcontext_size(_ndr_size*2)] nstring_array string;
986         } spoolss_StringArray2;
987
988         typedef struct {
989                 [string,charset(UTF16)] uint16 *driver_name;
990         } spoolss_AddDriverInfo1;
991
992         typedef [v1_enum,public] enum {
993                 SPOOLSS_DRIVER_VERSION_9X       = 0,
994                 SPOOLSS_DRIVER_VERSION_NT35     = 1,
995                 SPOOLSS_DRIVER_VERSION_NT4      = 2,
996                 SPOOLSS_DRIVER_VERSION_200X     = 3
997         } spoolss_DriverOSVersion;
998
999         typedef struct {
1000                 spoolss_DriverOSVersion version;
1001                 [string,charset(UTF16)] uint16 *driver_name;
1002                 [string,charset(UTF16)] uint16 *architecture;
1003                 [string,charset(UTF16)] uint16 *driver_path;
1004                 [string,charset(UTF16)] uint16 *data_file;
1005                 [string,charset(UTF16)] uint16 *config_file;
1006         } spoolss_AddDriverInfo2;
1007
1008         typedef struct {
1009                 spoolss_DriverOSVersion version;
1010                 [string,charset(UTF16)] uint16 *driver_name;
1011                 [string,charset(UTF16)] uint16 *architecture;
1012                 [string,charset(UTF16)] uint16 *driver_path;
1013                 [string,charset(UTF16)] uint16 *data_file;
1014                 [string,charset(UTF16)] uint16 *config_file;
1015                 [string,charset(UTF16)] uint16 *help_file;
1016                 [string,charset(UTF16)] uint16 *monitor_name;
1017                 [string,charset(UTF16)] uint16 *default_datatype;
1018                 [value(((ndr_size_spoolss_StringArray(dependent_files, ndr->iconv_convenience, ndr->flags)-4)/2))] uint32 _ndr_size_dependent_files;
1019                 spoolss_StringArray *dependent_files;
1020         } spoolss_AddDriverInfo3;
1021
1022         typedef struct {
1023                 spoolss_DriverOSVersion version;
1024                 [string,charset(UTF16)] uint16 *driver_name;
1025                 [string,charset(UTF16)] uint16 *architecture;
1026                 [string,charset(UTF16)] uint16 *driver_path;
1027                 [string,charset(UTF16)] uint16 *data_file;
1028                 [string,charset(UTF16)] uint16 *config_file;
1029                 [string,charset(UTF16)] uint16 *help_file;
1030                 [string,charset(UTF16)] uint16 *monitor_name;
1031                 [string,charset(UTF16)] uint16 *default_datatype;
1032                 [value(((ndr_size_spoolss_StringArray(dependent_files, ndr->iconv_convenience, ndr->flags)-4)/2))] uint32 _ndr_size_dependent_files;
1033                 spoolss_StringArray *dependent_files;
1034                 [value(((ndr_size_spoolss_StringArray(previous_names, ndr->iconv_convenience, ndr->flags)-4)/2))] uint32 _ndr_size_previous_names;
1035                 spoolss_StringArray *previous_names;
1036         } spoolss_AddDriverInfo4;
1037
1038         typedef [bitmap32bit] bitmap {
1039                 PRINTER_DRIVER_PACKAGE_AWARE = 0x00000002
1040         } spoolss_DriverAttributes;
1041
1042         typedef struct {
1043                 spoolss_DriverOSVersion version;
1044                 [string,charset(UTF16)] uint16 *driver_name;
1045                 [string,charset(UTF16)] uint16 *architecture;
1046                 [string,charset(UTF16)] uint16 *driver_path;
1047                 [string,charset(UTF16)] uint16 *data_file;
1048                 [string,charset(UTF16)] uint16 *config_file;
1049                 spoolss_DriverAttributes driver_attributes;
1050                 uint32 config_version;
1051                 uint32 driver_version;
1052         } spoolss_AddDriverInfo5;
1053
1054         typedef struct {
1055                 spoolss_DriverOSVersion version;
1056                 [string,charset(UTF16)] uint16 *driver_name;
1057                 [string,charset(UTF16)] uint16 *architecture;
1058                 [string,charset(UTF16)] uint16 *driver_path;
1059                 [string,charset(UTF16)] uint16 *data_file;
1060                 [string,charset(UTF16)] uint16 *config_file;
1061                 [string,charset(UTF16)] uint16 *help_file;
1062                 [string,charset(UTF16)] uint16 *monitor_name;
1063                 [string,charset(UTF16)] uint16 *default_datatype;
1064                 [value(((ndr_size_spoolss_StringArray(dependent_files, ndr->iconv_convenience, ndr->flags)-4)/2))] uint32 _ndr_size_dependent_files;
1065                 spoolss_StringArray *dependent_files;
1066                 [value(((ndr_size_spoolss_StringArray(previous_names, ndr->iconv_convenience, ndr->flags)-4)/2))] uint32 _ndr_size_previous_names;
1067                 spoolss_StringArray *previous_names;
1068                 NTTIME driver_date;
1069                 hyper driver_version;
1070                 [string,charset(UTF16)] uint16 *manufacturer_name;
1071                 [string,charset(UTF16)] uint16 *manufacturer_url;
1072                 [string,charset(UTF16)] uint16 *hardware_id;
1073                 [string,charset(UTF16)] uint16 *provider;
1074         } spoolss_AddDriverInfo6;
1075
1076         typedef struct {
1077                 spoolss_DriverOSVersion version;
1078                 [string,charset(UTF16)] uint16 *driver_name;
1079                 [string,charset(UTF16)] uint16 *architecture;
1080                 [string,charset(UTF16)] uint16 *driver_path;
1081                 [string,charset(UTF16)] uint16 *data_file;
1082                 [string,charset(UTF16)] uint16 *config_file;
1083                 [string,charset(UTF16)] uint16 *help_file;
1084                 [string,charset(UTF16)] uint16 *monitor_name;
1085                 [string,charset(UTF16)] uint16 *default_datatype;
1086                 [value(((ndr_size_spoolss_StringArray(dependent_files, ndr->iconv_convenience, ndr->flags)-4)/2))] uint32 _ndr_size_dependent_files;
1087                 spoolss_StringArray *dependent_files;
1088                 [value(((ndr_size_spoolss_StringArray(previous_names, ndr->iconv_convenience, ndr->flags)-4)/2))] uint32 _ndr_size_previous_names;
1089                 spoolss_StringArray *previous_names;
1090                 NTTIME driver_date;
1091                 hyper driver_version;
1092                 [string,charset(UTF16)] uint16 *manufacturer_name;
1093                 [string,charset(UTF16)] uint16 *manufacturer_url;
1094                 [string,charset(UTF16)] uint16 *hardware_id;
1095                 [string,charset(UTF16)] uint16 *provider;
1096                 [string,charset(UTF16)] uint16 *print_processor;
1097                 [string,charset(UTF16)] uint16 *vendor_setup;
1098                 [value(((ndr_size_spoolss_StringArray(color_profiles, ndr->iconv_convenience, ndr->flags)-4)/2))] uint32 _ndr_size_color_profiles;
1099                 spoolss_StringArray *color_profiles;
1100                 [string,charset(UTF16)] uint16 *inf_path;
1101                 uint32 printer_driver_attributes;
1102                 [value(((ndr_size_spoolss_StringArray(core_driver_dependencies, ndr->iconv_convenience, ndr->flags)-4)/2))] uint32 _ndr_size_core_driver_dependencies;
1103                 spoolss_StringArray *core_driver_dependencies;
1104                 NTTIME min_inbox_driver_ver_date;
1105                 hyper min_inbox_driver_ver_version;
1106         } spoolss_AddDriverInfo8;
1107
1108         typedef [switch_type(uint32)] union {
1109                 [case(1)] spoolss_AddDriverInfo1 *info1;
1110                 [case(2)] spoolss_AddDriverInfo2 *info2;
1111                 [case(3)] spoolss_AddDriverInfo3 *info3;
1112                 [case(4)] spoolss_AddDriverInfo4 *info4;
1113                 [case(6)] spoolss_AddDriverInfo6 *info6;
1114                 [case(8)] spoolss_AddDriverInfo8 *info8;
1115         } spoolss_AddDriverInfo;
1116
1117         typedef struct {
1118                 uint32 level;
1119                 [switch_is(level)] spoolss_AddDriverInfo info;
1120         } spoolss_AddDriverInfoCtr;
1121
1122         WERROR spoolss_AddPrinterDriver(
1123                 [in,unique] [string,charset(UTF16)] uint16 *servername,
1124                 [in,ref] spoolss_AddDriverInfoCtr *info_ctr
1125         );
1126
1127         typedef [public,gensize] struct {
1128                 [relative] nstring *driver_name;
1129         } spoolss_DriverInfo1;
1130
1131         typedef [public,gensize] struct {
1132                 spoolss_DriverOSVersion version;
1133                 [relative] nstring *driver_name;
1134                 [relative] nstring *architecture;
1135                 [relative] nstring *driver_path;
1136                 [relative] nstring *data_file;
1137                 [relative] nstring *config_file;
1138         } spoolss_DriverInfo2;
1139
1140         typedef [public,gensize] struct {
1141                 spoolss_DriverOSVersion version;
1142                 [relative] nstring *driver_name;
1143                 [relative] nstring *architecture;
1144                 [relative] nstring *driver_path;
1145                 [relative] nstring *data_file;
1146                 [relative] nstring *config_file;
1147                 [relative] nstring *help_file;
1148                 [relative] nstring_array *dependent_files;
1149                 [relative] nstring *monitor_name;
1150                 [relative] nstring *default_datatype;
1151         } spoolss_DriverInfo3;
1152
1153         typedef [public,gensize] struct {
1154                 spoolss_DriverOSVersion version;
1155                 [relative] nstring *driver_name;
1156                 [relative] nstring *architecture;
1157                 [relative] nstring *driver_path;
1158                 [relative] nstring *data_file;
1159                 [relative] nstring *config_file;
1160                 [relative] nstring *help_file;
1161                 [relative] nstring_array *dependent_files;
1162                 [relative] nstring *monitor_name;
1163                 [relative] nstring *default_datatype;
1164                 [relative] nstring_array *previous_names;
1165         } spoolss_DriverInfo4;
1166
1167         typedef [public,gensize] struct {
1168                 spoolss_DriverOSVersion version;
1169                 [relative] nstring *driver_name;
1170                 [relative] nstring *architecture;
1171                 [relative] nstring *driver_path;
1172                 [relative] nstring *data_file;
1173                 [relative] nstring *config_file;
1174                 spoolss_DriverAttributes driver_attributes;
1175                 uint32 config_version;
1176                 uint32 driver_version;
1177         } spoolss_DriverInfo5;
1178
1179         typedef [public,gensize] struct {
1180                 spoolss_DriverOSVersion version;
1181                 [relative] nstring *driver_name;
1182                 [relative] nstring *architecture;
1183                 [relative] nstring *driver_path;
1184                 [relative] nstring *data_file;
1185                 [relative] nstring *config_file;
1186                 [relative] nstring *help_file;
1187                 [relative] nstring_array *dependent_files;
1188                 [relative] nstring *monitor_name;
1189                 [relative] nstring *default_datatype;
1190                 [relative] nstring_array *previous_names;
1191                 NTTIME driver_date;
1192                 hyper driver_version;
1193                 [relative] nstring *manufacturer_name;
1194                 [relative] nstring *manufacturer_url;
1195                 [relative] nstring *hardware_id;
1196                 [relative] nstring *provider;
1197         } spoolss_DriverInfo6;
1198
1199         typedef [public,gensize] struct {
1200                 spoolss_DriverOSVersion version;
1201                 [relative] nstring *driver_name;
1202                 [relative] nstring *architecture;
1203                 [relative] nstring *driver_path;
1204                 [relative] nstring *data_file;
1205                 [relative] nstring *config_file;
1206                 [relative] nstring *help_file;
1207                 [relative] nstring_array *dependent_files;
1208                 [relative] nstring *monitor_name;
1209                 [relative] nstring *default_datatype;
1210                 [relative] nstring_array *previous_names;
1211                 NTTIME driver_date;
1212                 hyper driver_version;
1213                 [relative] nstring *manufacturer_name;
1214                 [relative] nstring *manufacturer_url;
1215                 [relative] nstring *hardware_id;
1216                 [relative] nstring *provider;
1217                 [relative] nstring *print_processor;
1218                 [relative] nstring *vendor_setup;
1219                 [relative] nstring_array *color_profiles;
1220                 [relative] nstring *inf_path;
1221                 uint32 printer_driver_attributes;
1222                 [relative] nstring_array *core_driver_dependencies;
1223                 NTTIME min_inbox_driver_ver_date;
1224                 hyper min_inbox_driver_ver_version;
1225         } spoolss_DriverInfo8;
1226
1227         typedef [v1_enum] enum {
1228                 SPOOLSS_DRIVER_FILE_TYPE_RENDERING      = 0x00000000,
1229                 SPOOLSS_DRIVER_FILE_TYPE_CONFIGURATION  = 0x00000001,
1230                 SPOOLSS_DRIVER_FILE_TYPE_DATA           = 0x00000002,
1231                 SPOOLSS_DRIVER_FILE_TYPE_HELP           = 0x00000003,
1232                 SPOOLSS_DRIVER_FILE_TYPE_OTHER          = 0x00000004
1233         } spoolss_DriverFileType;
1234
1235         typedef [public] struct {
1236                 [relative] nstring *file_name;
1237                 spoolss_DriverFileType file_type;
1238                 uint32 file_version;
1239         } spoolss_DriverFileInfo;
1240
1241         typedef [public,gensize,nopush,nopull] struct {
1242                 spoolss_DriverOSVersion version;
1243                 [relative] nstring *driver_name;
1244                 [relative] nstring *architecture;
1245                 [relative] [size_is(file_count)] spoolss_DriverFileInfo *file_info;
1246                 uint32 file_count;
1247                 [relative] nstring *monitor_name;
1248                 [relative] nstring *default_datatype;
1249                 [relative] nstring_array *previous_names;
1250                 NTTIME driver_date;
1251                 hyper driver_version;
1252                 [relative] nstring *manufacturer_name;
1253                 [relative] nstring *manufacturer_url;
1254                 [relative] nstring *hardware_id;
1255                 [relative] nstring *provider;
1256         } spoolss_DriverInfo101;
1257
1258         typedef [nodiscriminant,relative_base,public,gensize] union {
1259                 [case(1)] spoolss_DriverInfo1 info1;
1260                 [case(2)] spoolss_DriverInfo2 info2;
1261                 [case(3)] spoolss_DriverInfo3 info3;
1262                 [case(4)] spoolss_DriverInfo4 info4;
1263                 [case(5)] spoolss_DriverInfo5 info5;
1264                 [case(6)] spoolss_DriverInfo6 info6;
1265                 [case(8)] spoolss_DriverInfo8 info8;
1266                 [case(101)] spoolss_DriverInfo101 info101;
1267                 [default];
1268         } spoolss_DriverInfo;
1269
1270         /******************/
1271         /* Function: 0x0a */
1272         [public,noopnum,noprint] WERROR _spoolss_EnumPrinterDrivers(
1273                 [in,unique] [string,charset(UTF16)] uint16 *server,
1274                 [in,unique] [string,charset(UTF16)] uint16 *environment,
1275                 [in] uint32 level,
1276                 [in,unique] DATA_BLOB *buffer,
1277                 [in] uint32 offered,
1278                 [out,unique] DATA_BLOB *info,
1279                 [out,ref] uint32 *needed,
1280                 [out,ref] uint32 *count
1281         );
1282         [public,noopnum,noprint] void __spoolss_EnumPrinterDrivers(
1283                 [in] uint32 level,
1284                 [in] uint32 count,
1285                 [out,switch_is(level)] spoolss_DriverInfo info[count]
1286         );
1287         [nopull,nopush] WERROR spoolss_EnumPrinterDrivers(
1288                 [in,unique] [string,charset(UTF16)] uint16 *server,
1289                 [in,unique] [string,charset(UTF16)] uint16 *environment,
1290                 [in] uint32 level,
1291                 [in,unique] DATA_BLOB *buffer,
1292                 [in] uint32 offered,
1293                 [out,ref] uint32 *count,
1294                 [out,ref,switch_is(level),size_is(,*count)] spoolss_DriverInfo **info,
1295                 [out,ref] uint32 *needed
1296         );
1297
1298         /******************/
1299         /* Function: 0x0b */
1300         WERROR spoolss_GetPrinterDriver(
1301                 [in,ref] policy_handle *handle,
1302                 [in,unique] [string,charset(UTF16)] uint16 *architecture,
1303                 [in]     uint32 level,
1304                 [in,unique] DATA_BLOB *buffer,
1305                 [in]     uint32 offered,
1306                 [out,unique,subcontext(4),subcontext_size(offered),switch_is(level)] spoolss_DriverInfo *info,
1307                 [out,ref] uint32 *needed
1308         );
1309
1310         /******************/
1311         /* Function: 0x0c */
1312         typedef [public,gensize] struct {
1313                 nstring directory_name;
1314         } spoolss_DriverDirectoryInfo1;
1315
1316         /* NOTE: it's seems that w2k3 completly ignores the level
1317                  in its server code
1318          */
1319         typedef [nodiscriminant,relative_base,gensize,public] union {
1320                 [case(1)] spoolss_DriverDirectoryInfo1 info1;
1321                 [default] spoolss_DriverDirectoryInfo1 info1;
1322         } spoolss_DriverDirectoryInfo;
1323
1324         [public] WERROR spoolss_GetPrinterDriverDirectory(
1325                 [in,unique] [string,charset(UTF16)] uint16 *server,
1326                 [in,unique] [string,charset(UTF16)] uint16 *environment,
1327                 [in] uint32 level,
1328                 [in,unique] DATA_BLOB *buffer,
1329                 [in] uint32 offered,
1330                 [out,unique,subcontext(4),subcontext_size(offered),switch_is(level)] spoolss_DriverDirectoryInfo *info,
1331                 [out,ref] uint32 *needed
1332         );
1333
1334         /******************/
1335         /* Function: 0x0d */
1336         WERROR spoolss_DeletePrinterDriver(
1337                 [in,unique] [string,charset(UTF16)] uint16 *server,
1338                 [in] [string,charset(UTF16)] uint16 architecture[],
1339                 [in] [string,charset(UTF16)] uint16 driver[]
1340         );
1341
1342         /******************/
1343         /* Function: 0x0e */
1344         WERROR spoolss_AddPrintProcessor(
1345                 [in,unique] [string,charset(UTF16)] uint16 *server,
1346                 [in] [string,charset(UTF16)] uint16 architecture[],
1347                 [in] [string,charset(UTF16)] uint16 path_name[],
1348                 [in] [string,charset(UTF16)] uint16 print_processor_name[]
1349         );
1350
1351         /******************/
1352         /* Function: 0x0f */
1353         typedef [public,gensize] struct {
1354                 [relative] nstring *print_processor_name;
1355         } spoolss_PrintProcessorInfo1;
1356
1357         typedef [nodiscriminant,relative_base,public] union {
1358                 [case(1)] spoolss_PrintProcessorInfo1 info1;
1359                 [default];
1360         } spoolss_PrintProcessorInfo;
1361
1362         [public,noopnum,noprint] WERROR _spoolss_EnumPrintProcessors(
1363                 [in,unique] [string,charset(UTF16)] uint16 *servername,
1364                 [in,unique] [string,charset(UTF16)] uint16 *environment,
1365                 [in] uint32 level,
1366                 [in,unique] DATA_BLOB *buffer,
1367                 [in] uint32 offered,
1368                 [out,unique] DATA_BLOB *info,
1369                 [out,ref] uint32 *needed,
1370                 [out,ref] uint32 *count
1371         );
1372         [public,noopnum,noprint] void __spoolss_EnumPrintProcessors(
1373                 [in] uint32 level,
1374                 [in] uint32 count,
1375                 [out,switch_is(level)] spoolss_PrintProcessorInfo info[count]
1376         );
1377         [nopull,nopush] WERROR spoolss_EnumPrintProcessors(
1378                 [in,unique] [string,charset(UTF16)] uint16 *servername,
1379                 [in,unique] [string,charset(UTF16)] uint16 *environment,
1380                 [in] uint32 level,
1381                 [in,unique] DATA_BLOB *buffer,
1382                 [in] uint32 offered,
1383                 [out,ref] uint32 *count,
1384                 [out,ref,switch_is(level),size_is(,*count)] spoolss_PrintProcessorInfo **info,
1385                 [out,ref] uint32 *needed
1386         );
1387
1388         /******************/
1389         /* Function: 0x10 */
1390         typedef [public,gensize] struct {
1391                 nstring directory_name;
1392         } spoolss_PrintProcessorDirectoryInfo1;
1393
1394         typedef [nodiscriminant,relative_base,gensize,public] union {
1395                 [case(1)] spoolss_PrintProcessorDirectoryInfo1 info1;
1396                 [default] spoolss_PrintProcessorDirectoryInfo1 info1;
1397         } spoolss_PrintProcessorDirectoryInfo;
1398
1399         WERROR spoolss_GetPrintProcessorDirectory(
1400                 [in,unique] [string,charset(UTF16)] uint16 *server,
1401                 [in,unique] [string,charset(UTF16)] uint16 *environment,
1402                 [in] uint32 level,
1403                 [in,unique] DATA_BLOB *buffer,
1404                 [in] uint32 offered,
1405                 [out,unique,subcontext(4),subcontext_size(offered),switch_is(level)] spoolss_PrintProcessorDirectoryInfo *info,
1406                 [out,ref] uint32 *needed
1407         );
1408
1409         /******************/
1410         /* Function: 0x11 */
1411         typedef struct {
1412                 [string,charset(UTF16)] uint16 *document_name;
1413                 [string,charset(UTF16)] uint16 *output_file;
1414                 [string,charset(UTF16)] uint16 *datatype;
1415         } spoolss_DocumentInfo1;
1416
1417         typedef [switch_type(uint32)] union {
1418                 [case(1)] spoolss_DocumentInfo1 *info1;
1419                 [case(2)]; /* TODO */
1420                 [case(3)]; /* TODO */
1421                 [default];
1422         } spoolss_DocumentInfo;
1423
1424         WERROR spoolss_StartDocPrinter(
1425                 [in,ref] policy_handle *handle,
1426                 [in] uint32 level,
1427                 [in,switch_is(level)] spoolss_DocumentInfo info,
1428                 [out,ref] uint32 *job_id
1429         );
1430
1431         /******************/
1432         /* Function: 0x12 */
1433         WERROR spoolss_StartPagePrinter(
1434                 [in,ref] policy_handle *handle
1435         );
1436
1437         /******************/
1438         /* Function: 0x13 */
1439         WERROR spoolss_WritePrinter(
1440                 [in,ref] policy_handle *handle,
1441                 [in] DATA_BLOB data,
1442                 [in,value(r->in.data.length)] uint32 _data_size,
1443                 [out,ref] uint32 *num_written
1444         );
1445
1446         /******************/
1447         /* Function: 0x14 */
1448         WERROR spoolss_EndPagePrinter(
1449                 [in,ref] policy_handle *handle
1450         );
1451
1452         /******************/
1453         /* Function: 0x15 */
1454         WERROR spoolss_AbortPrinter(
1455                 [in,ref] policy_handle *handle
1456         );
1457
1458         /******************/
1459         /* Function: 0x16 */
1460         WERROR spoolss_ReadPrinter(
1461                 [in,ref] policy_handle *handle,
1462                 [out,ref] [size_is(data_size)] uint8 *data,
1463                 [in] uint32 data_size,
1464                 [out,ref] uint32 *_data_size
1465         );
1466
1467         /******************/
1468         /* Function: 0x17 */
1469         WERROR spoolss_EndDocPrinter(
1470                 [in,ref] policy_handle *handle
1471         );
1472
1473         /******************/
1474         /* Function: 0x18 */
1475         WERROR spoolss_AddJob(
1476                 [in,ref] policy_handle *handle,
1477                 [in] uint32 level,
1478                 [in,out,unique] [size_is(offered)] uint8 *buffer,
1479                 [in] uint32 offered,
1480                 [out,ref] uint32 *needed
1481         );
1482
1483         /******************/
1484         /* Function: 0x19 */
1485         WERROR spoolss_ScheduleJob(
1486                 [in,ref] policy_handle *handle,
1487                 [in] uint32 jobid
1488         );
1489
1490         /******************/
1491         /* Function: 0x1a */
1492
1493         const string SPL_ARCH_WIN40             = "WIN40";
1494         const string SPL_ARCH_W32X86            = "W32X86";
1495         const string SPL_ARCH_W32MIPS           = "W32MIPS";
1496         const string SPL_ARCH_W32ALPHA          = "W32ALPHA";
1497         const string SPL_ARCH_W32PPC            = "W32PPC";
1498         const string SPL_ARCH_IA64              = "IA64";
1499         const string SPL_ARCH_X64               = "x64";
1500
1501         const string SPOOLSS_ARCHITECTURE_ALL                   = "All";
1502         const string SPOOLSS_ARCHITECTURE_ALL_CLUSTER           = "AllCluster";
1503         const string SPOOLSS_ARCHITECTURE_NT_X86                = "Windows NT x86";
1504         const string SPOOLSS_ARCHITECTURE_IA_64                 = "Windows IA64";
1505         const string SPOOLSS_ARCHITECTURE_x64                   = "Windows x64";
1506         const string SPOOLSS_ARCHITECTURE_4_0                   = "Windows 4.0";
1507         const string SPOOLSS_DEFAULT_SERVER_PATH                = "C:\\WINDOWS\\system32\\spool";
1508
1509         typedef [public,gensize] struct {
1510                 [value(ndr_size_spoolss_OSVersion(r,ndr->iconv_convenience,ndr->flags))] uint32 _ndr_size;
1511                 uint32 major;
1512                 uint32 minor;
1513                 uint32 build;
1514                 [value(2)] uint32 platform_id;
1515                 [subcontext(0),subcontext_size(256)] nstring extra_string;
1516         } spoolss_OSVersion;
1517
1518         typedef [public,gensize] struct {
1519                 [value(ndr_size_spoolss_OSVersionEx(r,ndr->iconv_convenience,ndr->flags))] uint32 _ndr_size;
1520                 uint32 major;
1521                 uint32 minor;
1522                 uint32 build;
1523                 [value(2)] uint32 platform_id;
1524                 [subcontext(0),subcontext_size(256)] nstring extra_string;
1525                 uint16 service_pack_major;
1526                 uint16 service_pack_minor;
1527                 uint16 suite_mask;
1528                 uint8 product_type;
1529                 uint8 reserved;
1530         } spoolss_OSVersionEx;
1531
1532         typedef [nodiscriminant,public,gensize] union {
1533                 [case(REG_NONE)];
1534                 [case(REG_SZ)] nstring string;
1535                 [case(REG_BINARY),flag(NDR_REMAINING)] DATA_BLOB binary;
1536                 [case(REG_DWORD)] uint32 value;
1537                 [case(REG_MULTI_SZ)] nstring_array string_array;
1538                 [default,flag(NDR_REMAINING)] DATA_BLOB data;
1539         } spoolss_PrinterData;
1540
1541         /* predefined registry key names for printer data */
1542
1543         const string SPOOL_PRINTERDATA_KEY              = "PrinterDriverData";
1544         const string SPOOL_DSSPOOLER_KEY                = "DsSpooler";
1545         const string SPOOL_DSDRIVER_KEY                 = "DsDriver";
1546         const string SPOOL_DSUSER_KEY                   = "DsUser";
1547         const string SPOOL_PNPDATA_KEY                  = "PnPData";
1548         const string SPOOL_OID_KEY                      = "OID";
1549
1550         /* predefined value names for printer data */
1551
1552         const string SPOOL_REG_ASSETNUMBER              = "assetNumber";
1553         const string SPOOL_REG_BYTESPERMINUTE           = "bytesPerMinute";
1554         const string SPOOL_REG_DEFAULTPRIORITY          = "defaultPriority";
1555         const string SPOOL_REG_DESCRIPTION              = "description";
1556         const string SPOOL_REG_DRIVERNAME               = "driverName";
1557         const string SPOOL_REG_DRIVERVERSION            = "driverVersion";
1558         const string SPOOL_REG_FLAGS                    = "flags";
1559         const string SPOOL_REG_LOCATION                 = "location";
1560         const string SPOOL_REG_OPERATINGSYSTEM          = "operatingSystem";
1561         const string SPOOL_REG_OPERATINGSYSTEMHOTFIX    = "operatingSystemHotfix";
1562         const string SPOOL_REG_OPERATINGSYSTEMSERVICEPACK = "operatingSystemServicePack";
1563         const string SPOOL_REG_OPERATINGSYSTEMVERSION   = "operatingSystemVersion";
1564         const string SPOOL_REG_PORTNAME                 = "portName";
1565         const string SPOOL_REG_PRINTATTRIBUTES          = "printAttributes";
1566         const string SPOOL_REG_PRINTBINNAMES            = "printBinNames";
1567         const string SPOOL_REG_PRINTCOLLATE             = "printCollate";
1568         const string SPOOL_REG_PRINTCOLOR               = "printColor";
1569         const string SPOOL_REG_PRINTDUPLEXSUPPORTED     = "printDuplexSupported";
1570         const string SPOOL_REG_PRINTENDTIME             = "printEndTime";
1571         const string SPOOL_REG_PRINTERNAME              = "printerName";
1572         const string SPOOL_REG_PRINTFORMNAME            = "printFormName";
1573         const string SPOOL_REG_PRINTKEEPPRINTEDJOBS     = "printKeepPrintedJobs";
1574         const string SPOOL_REG_PRINTLANGUAGE            = "printLanguage";
1575         const string SPOOL_REG_PRINTMACADDRESS          = "printMACAddress";
1576         const string SPOOL_REG_PRINTMAXCOPIES           = "printMaxCopies";
1577         const string SPOOL_REG_PRINTMAXRESOLUTIONSUPPORTED = "printMaxResolutionSupported";
1578         const string SPOOL_REG_PRINTMAXXEXTENT          = "printMaxXExtent";
1579         const string SPOOL_REG_PRINTMAXYEXTENT          = "printMaxYExtent";
1580         const string SPOOL_REG_PRINTMEDIAREADY          = "printMediaReady";
1581         const string SPOOL_REG_PRINTMEDIASUPPORTED      = "printMediaSupported";
1582         const string SPOOL_REG_PRINTMEMORY              = "printMemory";
1583         const string SPOOL_REG_PRINTMINXEXTENT          = "printMinXExtent";
1584         const string SPOOL_REG_PRINTMINYEXTENT          = "printMinYExtent";
1585         const string SPOOL_REG_PRINTNETWORKADDRESS      = "printNetworkAddress";
1586         const string SPOOL_REG_PRINTNOTIFY              = "printNotify";
1587         const string SPOOL_REG_PRINTNUMBERUP            = "printNumberUp";
1588         const string SPOOL_REG_PRINTORIENTATIONSSUPPORTED = "printOrientationsSupported";
1589         const string SPOOL_REG_PRINTOWNER               = "printOwner";
1590         const string SPOOL_REG_PRINTPAGESPERMINUTE      = "printPagesPerMinute";
1591         const string SPOOL_REG_PRINTRATE                = "printRate";
1592         const string SPOOL_REG_PRINTRATEUNIT            = "printRateUnit";
1593         const string SPOOL_REG_PRINTSEPARATORFILE       = "printSeparatorFile";
1594         const string SPOOL_REG_PRINTSHARENAME           = "printShareName";
1595         const string SPOOL_REG_PRINTSPOOLING            = "printSpooling";
1596         const string SPOOL_REGVAL_PRINTWHILESPOOLING    = "PrintWhileSpooling";
1597         const string SPOOL_REGVAL_PRINTAFTERSPOOLED     = "PrintAfterSpooled";
1598         const string SPOOL_REGVAL_PRINTDIRECT           = "PrintDirect";
1599         const string SPOOL_REG_PRINTSTAPLINGSUPPORTED   = "printStaplingSupported";
1600         const string SPOOL_REG_PRINTSTARTTIME           = "printStartTime";
1601         const string SPOOL_REG_PRINTSTATUS              = "printStatus";
1602         const string SPOOL_REG_PRIORITY                 = "priority";
1603         const string SPOOL_REG_SERVERNAME               = "serverName";
1604         const string SPOOL_REG_SHORTSERVERNAME          = "shortServerName";
1605         const string SPOOL_REG_UNCNAME                  = "uNCName";
1606         const string SPOOL_REG_URL                      = "url";
1607         const string SPOOL_REG_VERSIONNUMBER            = "versionNumber";
1608
1609         [noopnum,noprint,public] WERROR _spoolss_GetPrinterData(
1610                 [in,ref] policy_handle *handle,
1611                 [in]     [string,charset(UTF16)] uint16 value_name[],
1612                 [in]     uint32 offered,
1613                 [out,ref] winreg_Type *type,
1614                 [out,ref] DATA_BLOB *data,
1615                 [out,ref] uint32 *needed
1616         );
1617         [noopnum,noprint,public] void __spoolss_GetPrinterData(
1618                 [in] winreg_Type type,
1619                 [out,ref,switch_is(type)] spoolss_PrinterData *data
1620         );
1621         [nopull,nopush,public] WERROR spoolss_GetPrinterData(
1622                 [in,ref] policy_handle *handle,
1623                 [in]     [string,charset(UTF16)] uint16 value_name[],
1624                 [in]     uint32 offered,
1625                 [out,ref] winreg_Type *type,
1626                 [out,ref,subcontext(4),subcontext_size(offered),switch_is(*type)] spoolss_PrinterData *data,
1627                 [out,ref] uint32 *needed
1628         );
1629
1630         /******************/
1631         /* Function: 0x1b */
1632         [noopnum,nopull,noprint,public] WERROR _spoolss_SetPrinterData(
1633                 [in,ref] policy_handle *handle,
1634                 [in] [string,charset(UTF16)] uint16 value_name[],
1635                 [in] winreg_Type type,
1636                 [in] DATA_BLOB data,
1637                 [in] uint32 _offered
1638         );
1639         [noopnum,nopull,noprint,public] void __spoolss_SetPrinterData(
1640                 [in] winreg_Type type,
1641                 [out,ref,switch_is(type)] spoolss_PrinterData *data
1642         );
1643         [nopush] WERROR spoolss_SetPrinterData(
1644                 [in,ref] policy_handle *handle,
1645                 [in] [string,charset(UTF16)] uint16 value_name[],
1646                 [in] winreg_Type type,
1647                 [in,subcontext(4),switch_is(type)] spoolss_PrinterData data,
1648                 [in,value(ndr_size_spoolss_PrinterData(&data,type,ndr->iconv_convenience,flags))] uint32 _offered
1649         );
1650
1651         /******************/
1652         /* Function: 0x1c */
1653         [todo] WERROR spoolss_WaitForPrinterChange(
1654         );
1655
1656         /******************/
1657         /* Function: 0x1d */
1658         [public] WERROR spoolss_ClosePrinter(
1659                 [in,out,ref]     policy_handle *handle
1660         );
1661
1662         /******************/
1663         /* Function: 0x1e */
1664         typedef [v1_enum] enum {
1665                 SPOOLSS_FORM_USER       = 0,
1666                 SPOOLSS_FORM_BUILTIN    = 1,
1667                 SPOOLSS_FORM_PRINTER    = 2
1668         } spoolss_FormFlags;
1669
1670         typedef struct {
1671                 uint32 width;
1672                 uint32 height;
1673         } spoolss_FormSize;
1674
1675         typedef struct {
1676                 uint32 left;
1677                 uint32 top;
1678                 uint32 right;
1679                 uint32 bottom;
1680         } spoolss_FormArea;
1681
1682         typedef [public,gensize] struct {
1683                 spoolss_FormFlags flags;
1684                 [relative] nstring *form_name;
1685                 spoolss_FormSize size;
1686                 spoolss_FormArea area;
1687         } spoolss_FormInfo1;
1688
1689         typedef [bitmap32bit] bitmap {
1690                 SPOOLSS_FORM_STRING_TYPE_NONE           = 0x00000001,
1691                 SPOOLSS_FORM_STRING_TYPE_MUI_DLL        = 0x00000002,
1692                 SPOOLSS_FORM_STRING_TYPE_LANG_PAIR      = 0x00000004
1693         } spoolss_FormStringType;
1694
1695         typedef [public,gensize] struct {
1696                 spoolss_FormFlags flags;
1697                 [relative] nstring *form_name;
1698                 spoolss_FormSize size;
1699                 spoolss_FormArea area;
1700                 [relative] astring *keyword;
1701                 spoolss_FormStringType string_type;
1702                 [relative] nstring *mui_dll;
1703                 uint32 ressource_id;
1704                 [relative] nstring *display_name;
1705                 uint32 lang_id;
1706         } spoolss_FormInfo2;
1707
1708         typedef [nodiscriminant,relative_base,public,gensize] union {
1709                 [case(1)] spoolss_FormInfo1 info1;
1710                 [case(2)] spoolss_FormInfo2 info2;
1711                 [default];
1712         } spoolss_FormInfo;
1713
1714         typedef struct {
1715                 spoolss_FormFlags flags;
1716                 [string,charset(UTF16)] uint16 *form_name;
1717                 spoolss_FormSize size;
1718                 spoolss_FormArea area;
1719         } spoolss_AddFormInfo1;
1720
1721         typedef struct {
1722                 spoolss_FormFlags flags;
1723                 [string,charset(UTF16)] uint16 *form_name;
1724                 spoolss_FormSize size;
1725                 spoolss_FormArea area;
1726                 [string,charset(DOS)] uint8 *keyword;
1727                 spoolss_FormStringType string_type;
1728                 [string,charset(UTF16)] uint16 *mui_dll;
1729                 uint32 ressource_id;
1730                 [string,charset(UTF16)] uint16 *display_name;
1731                 uint32 lang_id;
1732         } spoolss_AddFormInfo2;
1733
1734         typedef [switch_type(uint32)] union {
1735                 [case(1)] spoolss_AddFormInfo1 *info1;
1736                 [case(2)] spoolss_AddFormInfo2 *info2;
1737         } spoolss_AddFormInfo;
1738
1739         WERROR spoolss_AddForm(
1740                 [in,ref] policy_handle *handle,
1741                 [in] uint32 level,
1742                 [in,switch_is(level)] spoolss_AddFormInfo info
1743         );
1744
1745         /******************/
1746         /* Function: 0x1f */
1747         WERROR spoolss_DeleteForm(
1748                 [in,ref] policy_handle *handle,
1749                 [in] [string,charset(UTF16)] uint16 form_name[]
1750         );
1751
1752         /******************/
1753         /* Function: 0x20 */
1754         WERROR spoolss_GetForm(
1755                 [in,ref] policy_handle *handle,
1756                 [in] [string,charset(UTF16)] uint16 form_name[],
1757                 [in] uint32 level,
1758                 [in,unique] DATA_BLOB *buffer,
1759                 [in] uint32 offered,
1760                 [out,unique,subcontext(4),subcontext_size(offered),switch_is(level)] spoolss_FormInfo *info,
1761                 [out,ref] uint32 *needed
1762         );
1763
1764         /******************/
1765         /* Function: 0x21 */
1766         WERROR spoolss_SetForm(
1767                 [in,ref] policy_handle *handle,
1768                 [in] [string,charset(UTF16)] uint16 form_name[],
1769                 [in] uint32 level,
1770                 [in,switch_is(level)] spoolss_AddFormInfo info
1771         );
1772
1773         /******************/
1774         /* Function: 0x22 */
1775         [public,noopnum,noprint] WERROR _spoolss_EnumForms(
1776                 [in,ref] policy_handle *handle,
1777                 [in]     uint32 level,
1778                 [in,unique] DATA_BLOB *buffer,
1779                 [in]     uint32 offered,
1780                 [out,unique] DATA_BLOB *info,
1781                 [out,ref] uint32 *needed,
1782                 [out,ref] uint32 *count
1783         );
1784         [public,noopnum,noprint] void __spoolss_EnumForms(
1785                 [in] uint32 level,
1786                 [in] uint32 count,
1787                 [out,switch_is(level)] spoolss_FormInfo info[count]
1788         );
1789         [nopull,nopush] WERROR spoolss_EnumForms(
1790                 [in,ref] policy_handle *handle,
1791                 [in]     uint32 level,
1792                 [in,unique] DATA_BLOB *buffer,
1793                 [in]     uint32 offered,
1794                 [out,ref] uint32 *count,
1795                 [out,ref,switch_is(level),size_is(,*count)] spoolss_FormInfo **info,
1796                 [out,ref] uint32 *needed
1797         );
1798
1799         /*
1800          * Special strings for the OpenPrinter() call.  See the MSDN DDK
1801          * docs on the XcvDataPort() for more details.
1802          */
1803
1804         const string SPL_LOCAL_PORT             = "Local Port";
1805         const string SPL_TCPIP_PORT             = "Standard TCP/IP Port";
1806         const string SPL_XCV_MONITOR_LOCALMON   = ",XcvMonitor Local Port";
1807         const string SPL_XCV_MONITOR_TCPMON     = ",XcvMonitor Standard TCP/IP Port";
1808
1809         typedef [public,gensize] struct {
1810                 [relative] nstring *port_name;
1811         } spoolss_PortInfo1;
1812
1813         typedef bitmap {
1814                 SPOOLSS_PORT_TYPE_WRITE         = 0x00000001,
1815                 SPOOLSS_PORT_TYPE_READ          = 0x00000002,
1816                 SPOOLSS_PORT_TYPE_REDIRECTED    = 0x00000004,
1817                 SPOOLSS_PORT_TYPE_NET_ATTACHED  = 0x00000008
1818         } spoolss_PortType;
1819
1820         typedef [public,gensize] struct {
1821                 [relative] nstring *port_name;
1822                 [relative] nstring *monitor_name;
1823                 [relative] nstring *description;
1824                 spoolss_PortType port_type;
1825                 uint32 reserved;
1826         } spoolss_PortInfo2;
1827
1828         typedef [v1_enum] enum {
1829                 PORT_STATUS_CLEAR               = 0x00000000,
1830                 PORT_STATUS_OFFLINE             = 0x00000001,
1831                 PORT_STATUS_PAPER_JAM           = 0x00000002,
1832                 PORT_STATUS_PAPER_OUT           = 0x00000003,
1833                 PORT_STATUS_OUTPUT_BIN_FULL     = 0x00000004,
1834                 PORT_STATUS_PAPER_PROBLEM       = 0x00000005,
1835                 PORT_STATUS_NO_TONER            = 0x00000006,
1836                 PORT_STATUS_DOOR_OPEN           = 0x00000007,
1837                 PORT_STATUS_USER_INTERVENTION   = 0x00000008,
1838                 PORT_STATUS_OUT_OF_MEMORY       = 0x00000009,
1839                 PORT_STATUS_TONER_LOW           = 0x0000000A,
1840                 PORT_STATUS_WARMING_UP          = 0x0000000B,
1841                 PORT_STATUS_POWER_SAVE          = 0x0000000C
1842         } spoolss_PortStatus;
1843
1844         typedef [v1_enum] enum {
1845                 PORT_STATUS_TYPE_ERROR          = 0x00000001,
1846                 PORT_STATUS_TYPE_WARNING        = 0x00000002,
1847                 PORT_STATUS_TYPE_INFO           = 0x00000003
1848         } spoolss_PortSeverity;
1849
1850         typedef [public,gensize] struct {
1851                 spoolss_PortStatus status;
1852                 [relative] nstring *status_string;
1853                 spoolss_PortSeverity severity;
1854         } spoolss_PortInfo3;
1855
1856         typedef [public,gensize] struct {
1857                 [relative] nstring *port_name;
1858                 DATA_BLOB monitor_data; /* relative ?? */
1859         } spoolss_PortInfoFF;
1860
1861         typedef [nodiscriminant,relative_base,public] union {
1862                 [case(1)] spoolss_PortInfo1 info1;
1863                 [case(2)] spoolss_PortInfo2 info2;
1864                 [case(3)] spoolss_PortInfo3 info3;
1865                 [case(0xff)] spoolss_PortInfoFF infoFF;
1866                 [default];
1867         } spoolss_PortInfo;
1868
1869         /******************/
1870         /* Function: 0x23 */
1871         [public,noopnum,noprint] WERROR _spoolss_EnumPorts(
1872                 [in,unique] [string,charset(UTF16)] uint16 *servername,
1873                 [in] uint32 level,
1874                 [in,unique] DATA_BLOB *buffer,
1875                 [in] uint32 offered,
1876                 [out,unique] DATA_BLOB *info,
1877                 [out,ref] uint32 *needed,
1878                 [out,ref] uint32 *count
1879         );
1880         [public,noopnum,noprint] void __spoolss_EnumPorts(
1881                 [in] uint32 level,
1882                 [in] uint32 count,
1883                 [out,switch_is(level)] spoolss_PortInfo info[count]
1884         );
1885         [nopull,nopush] WERROR spoolss_EnumPorts(
1886                 [in,unique] [string,charset(UTF16)] uint16 *servername,
1887                 [in] uint32 level,
1888                 [in,unique] DATA_BLOB *buffer,
1889                 [in] uint32 offered,
1890                 [out,ref] uint32 *count,
1891                 [out,ref,switch_is(level),size_is(,*count)] spoolss_PortInfo **info,
1892                 [out,ref] uint32 *needed
1893         );
1894
1895         /******************/
1896         /* Function: 0x24 */
1897         typedef [public,gensize] struct {
1898                 [relative] nstring *monitor_name;
1899         } spoolss_MonitorInfo1;
1900
1901         typedef [public,gensize] struct {
1902                 [relative] nstring *monitor_name;
1903                 [relative] nstring *environment;
1904                 [relative] nstring *dll_name;
1905         } spoolss_MonitorInfo2;
1906
1907         typedef [nodiscriminant,relative_base,public] union {
1908                 [case(1)] spoolss_MonitorInfo1 info1;
1909                 [case(2)] spoolss_MonitorInfo2 info2;
1910                 [default];
1911         } spoolss_MonitorInfo;
1912
1913         [public,noopnum,noprint] WERROR _spoolss_EnumMonitors(
1914                 [in,unique] [string,charset(UTF16)] uint16 *servername,
1915                 [in] uint32 level,
1916                 [in,unique] DATA_BLOB *buffer,
1917                 [in] uint32 offered,
1918                 [out,unique] DATA_BLOB *info,
1919                 [out,ref] uint32 *needed,
1920                 [out,ref] uint32 *count
1921         );
1922         [public,noopnum,noprint] void __spoolss_EnumMonitors(
1923                 [in] uint32 level,
1924                 [in] uint32 count,
1925                 [out,switch_is(level)] spoolss_MonitorInfo info[count]
1926         );
1927         [nopull,nopush] WERROR spoolss_EnumMonitors(
1928                 [in,unique] [string,charset(UTF16)] uint16 *servername,
1929                 [in] uint32 level,
1930                 [in,unique] DATA_BLOB *buffer,
1931                 [in] uint32 offered,
1932                 [out,ref] uint32 *count,
1933                 [out,ref,switch_is(level),size_is(,*count)] spoolss_MonitorInfo **info,
1934                 [out,ref] uint32 *needed
1935         );
1936
1937         /******************/
1938         /* Function: 0x25 */
1939         WERROR spoolss_AddPort(
1940                [in,unique] [string,charset(UTF16)] uint16 *server_name,
1941                [in] uint32 unknown,
1942                [in] [string,charset(UTF16)] uint16 monitor_name[]
1943         );
1944
1945         /******************/
1946         /* Function: 0x26 */
1947         [todo] WERROR spoolss_ConfigurePort(
1948         );
1949
1950         /******************/
1951         /* Function: 0x27 */
1952         [todo] WERROR spoolss_DeletePort(
1953         );
1954
1955         /******************/
1956         /* Function: 0x28 */
1957         WERROR spoolss_CreatePrinterIC(
1958                 [in,ref] policy_handle *handle,
1959                 [out,ref] policy_handle *gdi_handle,
1960                 [in,ref] spoolss_DevmodeContainer *devmode_ctr
1961         );
1962
1963         /******************/
1964         /* Function: 0x29 */
1965         [todo] WERROR spoolss_PlayGDIScriptOnPrinterIC(
1966         );
1967
1968         /******************/
1969         /* Function: 0x2a */
1970         WERROR spoolss_DeletePrinterIC(
1971                 [in,out,ref] policy_handle *gdi_handle
1972         );
1973
1974         /******************/
1975         /* Function: 0x2b */
1976         [todo] WERROR spoolss_AddPrinterConnection(
1977         );
1978
1979         /******************/
1980         /* Function: 0x2c */
1981         [todo] WERROR spoolss_DeletePrinterConnection(
1982         );
1983
1984         /******************/
1985         /* Function: 0x2d */
1986         [todo] WERROR spoolss_PrinterMessageBox(
1987                 /* Marked as obsolete in MSDN.  "Not necessary and has
1988                    no effect". */
1989         );
1990
1991         /******************/
1992         /* Function: 0x2e */
1993         [todo] WERROR spoolss_AddMonitor(
1994         );
1995
1996         /******************/
1997         /* Function: 0x2f */
1998         [todo] WERROR spoolss_DeleteMonitor(
1999         );
2000
2001         /******************/
2002         /* Function: 0x30 */
2003         [todo] WERROR spoolss_DeletePrintProcessor(
2004         );
2005
2006         /******************/
2007         /* Function: 0x31 */
2008         [todo] WERROR spoolss_AddPrintProvidor(
2009         );
2010
2011         /******************/
2012         /* Function: 0x32 */
2013         [todo] WERROR spoolss_DeletePrintProvidor(
2014         );
2015
2016         /******************/
2017         /* Function: 0x33 */
2018
2019         typedef [public,gensize] struct {
2020                 [relative] nstring *name_array;
2021         } spoolss_PrintProcDataTypesInfo1;
2022
2023         typedef [nodiscriminant,relative_base,public] union {
2024                 [case(1)] spoolss_PrintProcDataTypesInfo1 info1;
2025                 [default];
2026         } spoolss_PrintProcDataTypesInfo;
2027
2028         [public,noopnum,noprint] WERROR _spoolss_EnumPrintProcDataTypes(
2029                 [in,unique] [string,charset(UTF16)] uint16 *servername,
2030                 [in,unique] [string,charset(UTF16)] uint16 *print_processor_name,
2031                 [in] uint32 level,
2032                 [in,unique] DATA_BLOB *buffer,
2033                 [in] uint32 offered,
2034                 [out,unique] DATA_BLOB *info,
2035                 [out,ref] uint32 *needed,
2036                 [out,ref] uint32 *count
2037         );
2038         [public,noopnum,noprint] void __spoolss_EnumPrintProcDataTypes(
2039                 [in] uint32 level,
2040                 [in] uint32 count,
2041                 [out,switch_is(level)] spoolss_PrintProcDataTypesInfo info[count]
2042         );
2043         [nopull,nopush] WERROR spoolss_EnumPrintProcDataTypes(
2044                 [in,unique] [string,charset(UTF16)] uint16 *servername,
2045                 [in,unique] [string,charset(UTF16)] uint16 *print_processor_name,
2046                 [in] uint32 level,
2047                 [in,unique] DATA_BLOB *buffer,
2048                 [in] uint32 offered,
2049                 [out,ref] uint32 *count,
2050                 [out,ref,switch_is(level),size_is(,*count)] spoolss_PrintProcDataTypesInfo **info,
2051                 [out,ref] uint32 *needed
2052         );
2053
2054         /******************/
2055         /* Function: 0x34 */
2056         WERROR spoolss_ResetPrinter(
2057                 [in,ref] policy_handle *handle,
2058                 [in,unique] [string,charset(UTF16)] uint16 *data_type,
2059                 [in,ref] spoolss_DevmodeContainer *devmode_ctr
2060         );
2061
2062         /******************/
2063         /* Function: 0x35 */
2064         WERROR spoolss_GetPrinterDriver2(
2065                 [in,ref] policy_handle *handle,
2066                 [in,unique] [string,charset(UTF16)] uint16 *architecture,
2067                 [in]     uint32 level,
2068                 [in,unique] DATA_BLOB *buffer,
2069                 [in]     uint32 offered,
2070                 [in]     uint32 client_major_version,
2071                 [in]     uint32 client_minor_version,
2072                 [out,unique,subcontext(4),subcontext_size(offered),switch_is(level)] spoolss_DriverInfo *info,
2073                 [out,ref] uint32 *needed,
2074                 [out,ref] uint32 *server_major_version,
2075                 [out,ref] uint32 *server_minor_version
2076         );
2077
2078         /******************/
2079         /* Function: 0x36 */
2080         [todo] WERROR spoolss_FindFirstPrinterChangeNotification(
2081         );
2082
2083         /******************/
2084         /* Function: 0x37 */
2085         [todo] WERROR spoolss_FindNextPrinterChangeNotification(
2086         );
2087
2088         /******************/
2089         /* Function: 0x38 */
2090         [public] WERROR spoolss_FindClosePrinterNotify(
2091                 [in,ref] policy_handle *handle
2092         );
2093
2094         /******************/
2095         /* Function: 0x39 */
2096         [todo] WERROR spoolss_RouterFindFirstPrinterChangeNotificationOld(
2097         );
2098
2099         /******************/
2100         /* Function: 0x3a */
2101         [public] WERROR spoolss_ReplyOpenPrinter(
2102                 [in,string,charset(UTF16)] uint16 server_name[],
2103                 [in] uint32 printer_local,
2104                 [in] winreg_Type type,
2105                 [in,range(0,512)] uint32 bufsize,
2106                 [in,unique,size_is(bufsize)] uint8 *buffer,
2107                 [out,ref] policy_handle *handle
2108         );
2109
2110         /******************/
2111         /* Function: 0x3b */
2112
2113         typedef [bitmap32bit] bitmap {
2114                 PRINTER_CHANGE_ADD_PRINTER                      = 0x00000001,
2115                 PRINTER_CHANGE_SET_PRINTER                      = 0x00000002,
2116                 PRINTER_CHANGE_DELETE_PRINTER                   = 0x00000004,
2117                 PRINTER_CHANGE_FAILED_CONNECTION_PRINTER        = 0x00000008,
2118                 PRINTER_CHANGE_ADD_JOB                          = 0x00000100,
2119                 PRINTER_CHANGE_SET_JOB                          = 0x00000200,
2120                 PRINTER_CHANGE_DELETE_JOB                       = 0x00000400,
2121                 PRINTER_CHANGE_WRITE_JOB                        = 0x00000800,
2122                 PRINTER_CHANGE_ADD_FORM                         = 0x00010000,
2123                 PRINTER_CHANGE_SET_FORM                         = 0x00020000,
2124                 PRINTER_CHANGE_DELETE_FORM                      = 0x00040000,
2125                 PRINTER_CHANGE_ADD_PORT                         = 0x00100000,
2126                 PRINTER_CHANGE_CONFIGURE_PORT                   = 0x00200000,
2127                 PRINTER_CHANGE_DELETE_PORT                      = 0x00400000,
2128                 PRINTER_CHANGE_ADD_PRINT_PROCESSOR              = 0x01000000,
2129                 PRINTER_CHANGE_DELETE_PRINT_PROCESSOR           = 0x04000000,
2130                 PRINTER_CHANGE_SERVER                           = 0x08000000,
2131                 PRINTER_CHANGE_ADD_PRINTER_DRIVER               = 0x10000000,
2132                 PRINTER_CHANGE_SET_PRINTER_DRIVER               = 0x20000000,
2133                 PRINTER_CHANGE_DELETE_PRINTER_DRIVER            = 0x40000000,
2134                 PRINTER_CHANGE_TIMEOUT                          = 0x80000000
2135         } spoolss_PrinterChangeFlags;
2136
2137         const int PRINTER_CHANGE_PRINTER                        = 0x000000FF;
2138
2139         const int PRINTER_CHANGE_JOB                            = 0x0000FF00;
2140
2141         const int PRINTER_CHANGE_FORM                           = (PRINTER_CHANGE_ADD_FORM |
2142                                                                    PRINTER_CHANGE_SET_FORM |
2143                                                                    PRINTER_CHANGE_DELETE_FORM); /* 0x00070000 */
2144
2145         const int PRINTER_CHANGE_PORT                           = (PRINTER_CHANGE_ADD_PORT |
2146                                                                    PRINTER_CHANGE_CONFIGURE_PORT |
2147                                                                    PRINTER_CHANGE_DELETE_PORT); /* 0x00700000 */
2148
2149         const int PRINTER_CHANGE_PRINT_PROCESSOR                = 0x07000000;
2150
2151         const int PRINTER_CHANGE_PRINTER_DRIVER                 = (PRINTER_CHANGE_ADD_PRINTER_DRIVER |
2152                                                                    PRINTER_CHANGE_SET_PRINTER_DRIVER |
2153                                                                    PRINTER_CHANGE_DELETE_PRINTER_DRIVER); /* 0x70000000 */
2154
2155         const int PRINTER_CHANGE_ALL                            = (PRINTER_CHANGE_PRINTER |
2156                                                                    PRINTER_CHANGE_JOB |
2157                                                                    PRINTER_CHANGE_FORM |
2158                                                                    PRINTER_CHANGE_PORT |
2159                                                                    PRINTER_CHANGE_PRINT_PROCESSOR |
2160                                                                    PRINTER_CHANGE_PRINTER_DRIVER); /* 0x7777FFFF */
2161         WERROR spoolss_RouterReplyPrinter(
2162                 [in,ref] policy_handle *handle,
2163                 [in] spoolss_PrinterChangeFlags flags,
2164                 [in,range(0,512)] uint32 bufsize,
2165                 [in,unique,size_is(bufsize)] uint8 *buffer
2166         );
2167
2168         /******************/
2169         /* Function: 0x3c */
2170         [public] WERROR spoolss_ReplyClosePrinter(
2171                 [in,out,ref] policy_handle *handle
2172         );
2173
2174         /******************/
2175         /* Function: 0x3d */
2176         [todo] WERROR spoolss_AddPortEx(
2177         );
2178
2179         /******************/
2180         /* Function: 0x3e */
2181         [todo] WERROR spoolss_RouterFindFirstPrinterChangeNotification(
2182         );
2183
2184         /******************/
2185         /* Function: 0x3f */
2186         [todo] WERROR spoolss_SpoolerInit(
2187         );
2188
2189         /******************/
2190         /* Function: 0x40 */
2191         [todo] WERROR spoolss_ResetPrinterEx(
2192         );
2193
2194         typedef [enum16bit,public] enum {
2195                 JOB_NOTIFY_FIELD_PRINTER_NAME                   = 0x00,
2196                 JOB_NOTIFY_FIELD_MACHINE_NAME                   = 0x01,
2197                 JOB_NOTIFY_FIELD_PORT_NAME                      = 0x02,
2198                 JOB_NOTIFY_FIELD_USER_NAME                      = 0x03,
2199                 JOB_NOTIFY_FIELD_NOTIFY_NAME                    = 0x04,
2200                 JOB_NOTIFY_FIELD_DATATYPE                       = 0x05,
2201                 JOB_NOTIFY_FIELD_PRINT_PROCESSOR                = 0x06,
2202                 JOB_NOTIFY_FIELD_PARAMETERS                     = 0x07,
2203                 JOB_NOTIFY_FIELD_DRIVER_NAME                    = 0x08,
2204                 JOB_NOTIFY_FIELD_DEVMODE                        = 0x09,
2205                 JOB_NOTIFY_FIELD_STATUS                         = 0x0a,
2206                 JOB_NOTIFY_FIELD_STATUS_STRING                  = 0x0b,
2207                 JOB_NOTIFY_FIELD_SECURITY_DESCRIPTOR            = 0x0c,
2208                 JOB_NOTIFY_FIELD_DOCUMENT                       = 0x0d,
2209                 JOB_NOTIFY_FIELD_PRIORITY                       = 0x0e,
2210                 JOB_NOTIFY_FIELD_POSITION                       = 0x0f,
2211                 JOB_NOTIFY_FIELD_SUBMITTED                      = 0x10,
2212                 JOB_NOTIFY_FIELD_START_TIME                     = 0x11,
2213                 JOB_NOTIFY_FIELD_UNTIL_TIME                     = 0x12,
2214                 JOB_NOTIFY_FIELD_TIME                           = 0x13,
2215                 JOB_NOTIFY_FIELD_TOTAL_PAGES                    = 0x14,
2216                 JOB_NOTIFY_FIELD_PAGES_PRINTED                  = 0x15,
2217                 JOB_NOTIFY_FIELD_TOTAL_BYTES                    = 0x16,
2218                 JOB_NOTIFY_FIELD_BYTES_PRINTED                  = 0x17
2219         } spoolss_JobNotifyField;
2220
2221         typedef [enum16bit,public] enum {
2222                 PRINTER_NOTIFY_FIELD_SERVER_NAME                = 0x00,
2223                 PRINTER_NOTIFY_FIELD_PRINTER_NAME               = 0x01,
2224                 PRINTER_NOTIFY_FIELD_SHARE_NAME                 = 0x02,
2225                 PRINTER_NOTIFY_FIELD_PORT_NAME                  = 0x03,
2226                 PRINTER_NOTIFY_FIELD_DRIVER_NAME                = 0x04,
2227                 PRINTER_NOTIFY_FIELD_COMMENT                    = 0x05,
2228                 PRINTER_NOTIFY_FIELD_LOCATION                   = 0x06,
2229                 PRINTER_NOTIFY_FIELD_DEVMODE                    = 0x07,
2230                 PRINTER_NOTIFY_FIELD_SEPFILE                    = 0x08,
2231                 PRINTER_NOTIFY_FIELD_PRINT_PROCESSOR            = 0x09,
2232                 PRINTER_NOTIFY_FIELD_PARAMETERS                 = 0x0a,
2233                 PRINTER_NOTIFY_FIELD_DATATYPE                   = 0x0b,
2234                 PRINTER_NOTIFY_FIELD_SECURITY_DESCRIPTOR        = 0x0c,
2235                 PRINTER_NOTIFY_FIELD_ATTRIBUTES                 = 0x0d,
2236                 PRINTER_NOTIFY_FIELD_PRIORITY                   = 0x0e,
2237                 PRINTER_NOTIFY_FIELD_DEFAULT_PRIORITY           = 0x0f,
2238                 PRINTER_NOTIFY_FIELD_START_TIME                 = 0x10,
2239                 PRINTER_NOTIFY_FIELD_UNTIL_TIME                 = 0x11,
2240                 PRINTER_NOTIFY_FIELD_STATUS                     = 0x12,
2241                 PRINTER_NOTIFY_FIELD_STATUS_STRING              = 0x13,
2242                 PRINTER_NOTIFY_FIELD_CJOBS                      = 0x14,
2243                 PRINTER_NOTIFY_FIELD_AVERAGE_PPM                = 0x15,
2244                 PRINTER_NOTIFY_FIELD_TOTAL_PAGES                = 0x16,
2245                 PRINTER_NOTIFY_FIELD_PAGES_PRINTED              = 0x17,
2246                 PRINTER_NOTIFY_FIELD_TOTAL_BYTES                = 0x18,
2247                 PRINTER_NOTIFY_FIELD_BYTES_PRINTED              = 0x19,
2248                 PRINTER_NOTIFY_FIELD_OBJECT_GUID                = 0x1a,
2249                 PRINTER_NOTIFY_FIELD_FRIENDLY_NAME              = 0x1b
2250         } spoolss_PrintNotifyField;
2251
2252         typedef [enum16bit] enum {
2253                 PRINTER_NOTIFY_TYPE     = 0x00,
2254                 JOB_NOTIFY_TYPE         = 0x01
2255         } spoolss_NotifyType;
2256
2257         typedef [nodiscriminant,noprint] union {
2258                 [case(PRINTER_NOTIFY_TYPE)] uint16 field;
2259                 [case(JOB_NOTIFY_TYPE)] uint16 field;
2260                 [default] uint16 field;
2261         } spoolss_Field;
2262
2263         /******************/
2264         /* Function: 0x41 */
2265         typedef struct {
2266                 spoolss_NotifyType type;
2267                 uint16 u1;
2268                 uint32 u2;
2269                 uint32 u3;
2270                 uint32 count;
2271                 [size_is(count),switch_is(type)] spoolss_Field *fields;
2272         } spoolss_NotifyOptionType;
2273
2274         typedef [bitmap32bit] bitmap {
2275                 PRINTER_NOTIFY_OPTIONS_REFRESH  = 0x00000001
2276         } spoolssNotifyOptionFlags;
2277
2278         typedef struct {
2279                 [value(2)] uint32 version;
2280                 spoolssNotifyOptionFlags flags;
2281                 uint32 count;
2282                 [size_is(count)] spoolss_NotifyOptionType *types;
2283         } spoolss_NotifyOption;
2284
2285         [public] WERROR spoolss_RemoteFindFirstPrinterChangeNotifyEx(
2286                 [in,ref] policy_handle *handle,
2287                 [in] spoolss_PrinterChangeFlags flags,
2288                 [in] uint32 options,
2289                 [in,unique] [string,charset(UTF16)] uint16 *local_machine,
2290                 [in] uint32 printer_local,
2291                 [in,unique] spoolss_NotifyOption *notify_options
2292         );
2293
2294         /******************/
2295         /* Function: 0x42 */
2296
2297         typedef struct {
2298                 uint32 size;
2299                 [size_is(size/2),unique,charset(UTF16)] uint16 *string;
2300         } spoolss_NotifyString;
2301
2302         typedef [v1_enum] enum {
2303                 NOTIFY_TABLE_DWORD              = 0x0001,
2304                 NOTIFY_TABLE_STRING             = 0x0002,
2305                 NOTIFY_TABLE_DEVMODE            = 0x0003,
2306                 NOTIFY_TABLE_TIME               = 0x0004,
2307                 NOTIFY_TABLE_SECURITYDESCRIPTOR = 0x0005
2308         } spoolss_NotifyTable;
2309
2310         typedef [switch_type(uint32)] union {
2311                 [case(1)] uint32 integer[2];
2312                 [case(2)] spoolss_NotifyString string;
2313                 [case(3)] spoolss_DevmodeContainer devmode;
2314                 [case(4)] spoolss_TimeCtr time;
2315                 [case(5)] sec_desc_buf sd;
2316         } spoolss_NotifyData;
2317
2318         typedef struct {
2319                 spoolss_NotifyType type;
2320                 [switch_is(type)] spoolss_Field field;
2321                 spoolss_NotifyTable variable_type;
2322                 uint32 job_id;
2323                 [switch_is(variable_type)] spoolss_NotifyData data;
2324         } spoolss_Notify;
2325
2326         typedef struct {
2327                 [value(2)] uint32 version;
2328                 uint32 flags;
2329                 uint32 count;
2330                 [size_is(count)] spoolss_Notify notifies[];
2331         } spoolss_NotifyInfo;
2332
2333         typedef [switch_type(uint32)] union {
2334                 [case(0)] spoolss_NotifyInfo *info0;
2335         } spoolss_ReplyPrinterInfo;
2336
2337         typedef [bitmap32bit] bitmap {
2338                 PRINTER_NOTIFY_INFO_DISCARDED           = 0x00000001,
2339                 PRINTER_NOTIFY_INFO_DISCARDNOTED        = 0x00010000,
2340                 PRINTER_NOTIFY_INFO_COLOR_MISMATCH      = 0x00080000
2341         } spoolss_PrinterNotifyFlags;
2342
2343         WERROR spoolss_RouterReplyPrinterEx(
2344                 [in,ref] policy_handle *handle,
2345                 [in] uint32 color,
2346                 [in] spoolss_PrinterChangeFlags flags,
2347                 [out,ref] spoolss_PrinterNotifyFlags *reply_result,
2348                 [in] uint32 reply_type,
2349                 [in,switch_is(reply_type)] spoolss_ReplyPrinterInfo info
2350         );
2351
2352         /******************/
2353         /* Function: 0x43 */
2354         [public] WERROR spoolss_RouterRefreshPrinterChangeNotify(
2355                 [in,ref] policy_handle *handle,
2356                 [in] uint32 change_low,
2357                 [in,unique] spoolss_NotifyOption *options,
2358                 [out,ref] spoolss_NotifyInfo **info
2359         );
2360
2361         /******************/
2362         /* Function: 0x44 */
2363         [todo] WERROR spoolss_44(
2364         );
2365
2366         typedef struct {
2367                 uint32 size;
2368                 [string,charset(UTF16)] uint16 *client;
2369                 [string,charset(UTF16)] uint16 *user;
2370                 uint32 build;
2371                 spoolss_MajorVersion major;
2372                 spoolss_MinorVersion minor;
2373                 spoolss_ProcessorArchitecture processor;
2374         } spoolss_UserLevel1;
2375
2376         typedef struct {
2377                 uint32 not_used;
2378         } spoolss_UserLevel2;
2379
2380         typedef struct {
2381                 uint32 size;
2382                 uint32 flags;
2383                 uint32 size2;
2384                 [string,charset(UTF16)] uint16 *client;
2385                 [string,charset(UTF16)] uint16 *user;
2386                 uint32 build;
2387                 spoolss_MajorVersion major;
2388                 spoolss_MinorVersion minor;
2389                 spoolss_ProcessorArchitecture processor;
2390                 udlong reserved;
2391         } spoolss_UserLevel3;
2392
2393         typedef [switch_type(uint32)] union {
2394                 [case(1)]  spoolss_UserLevel1 *level1;
2395                 [case(2)]  spoolss_UserLevel2 *level2;
2396                 [case(3)]  spoolss_UserLevel3 *level3;
2397         } spoolss_UserLevel;
2398
2399         typedef struct {
2400                 uint32 level;
2401                 [switch_is(level)] spoolss_UserLevel user_info;
2402         } spoolss_UserLevelCtr;
2403
2404         typedef bitmap {
2405                 SERVER_ACCESS_ADMINISTER        = 0x00000001,
2406                 SERVER_ACCESS_ENUMERATE         = 0x00000002,
2407                 PRINTER_ACCESS_ADMINISTER       = 0x00000004,
2408                 PRINTER_ACCESS_USE              = 0x00000008,
2409                 JOB_ACCESS_ADMINISTER           = 0x00000010,
2410                 JOB_ACCESS_READ                 = 0x00000020
2411         } spoolss_AccessRights;
2412
2413         /* Access rights for print servers */
2414         const int SERVER_ALL_ACCESS     = SEC_STD_REQUIRED |
2415                                           SERVER_ACCESS_ADMINISTER |
2416                                           SERVER_ACCESS_ENUMERATE;
2417
2418         const int SERVER_READ           = SEC_STD_READ_CONTROL |
2419                                           SERVER_ACCESS_ENUMERATE;
2420
2421         const int SERVER_WRITE          = STANDARD_RIGHTS_WRITE_ACCESS |
2422                                           SERVER_ACCESS_ADMINISTER |
2423                                           SERVER_ACCESS_ENUMERATE;
2424
2425         const int SERVER_EXECUTE        = SEC_STD_READ_CONTROL |
2426                                           SERVER_ACCESS_ENUMERATE;
2427
2428         /* Access rights for printers */
2429         const int PRINTER_ALL_ACCESS    = SEC_STD_REQUIRED |
2430                                           PRINTER_ACCESS_ADMINISTER |
2431                                           PRINTER_ACCESS_USE;
2432
2433         const int PRINTER_READ          = SEC_STD_READ_CONTROL |
2434                                           PRINTER_ACCESS_USE;
2435
2436         const int PRINTER_WRITE         = STANDARD_RIGHTS_WRITE_ACCESS |
2437                                           PRINTER_ACCESS_USE;
2438
2439         const int PRINTER_EXECUTE       = SEC_STD_READ_CONTROL |
2440                                           PRINTER_ACCESS_USE;
2441
2442         /* Access rights for jobs */
2443         const int JOB_ALL_ACCESS        = SEC_STD_REQUIRED |
2444                                           JOB_ACCESS_ADMINISTER;
2445
2446         const int JOB_READ              = SEC_STD_READ_CONTROL |
2447                                           JOB_ACCESS_ADMINISTER;
2448
2449         const int JOB_WRITE             = STANDARD_RIGHTS_WRITE_ACCESS |
2450                                           JOB_ACCESS_ADMINISTER;
2451
2452         const int JOB_EXECUTE           = SEC_STD_READ_CONTROL |
2453                                           JOB_ACCESS_ADMINISTER;
2454
2455         /* ACE masks for various print permissions */
2456         const int PRINTER_ACE_FULL_CONTROL = SEC_GENERIC_ALL |
2457                                                 PRINTER_ALL_ACCESS;
2458
2459         const int PRINTER_ACE_MANAGE_DOCUMENTS = SEC_GENERIC_ALL |
2460                                                 READ_CONTROL_ACCESS;
2461
2462         const int PRINTER_ACE_PRINT     = GENERIC_EXECUTE_ACCESS |
2463                                           READ_CONTROL_ACCESS |
2464                                           PRINTER_ACCESS_USE;
2465
2466         /******************/
2467         /* Function: 0x45 */
2468         [public] WERROR spoolss_OpenPrinterEx(
2469                 [in,unique]           [string,charset(UTF16)] uint16 *printername,
2470                 [in,unique]           [string,charset(UTF16)] uint16 *datatype,
2471                 [in]                  spoolss_DevmodeContainer devmode_ctr,
2472                 [in]                  spoolss_AccessRights access_mask,
2473                 [in]                  uint32 level,
2474                 [in,switch_is(level)] spoolss_UserLevel userlevel,
2475                 [out,ref]             policy_handle *handle
2476         );
2477
2478         /******************/
2479         /* Function: 0x46 */
2480         WERROR spoolss_AddPrinterEx(
2481                 [in,unique] [string,charset(UTF16)] uint16 *server,
2482                 [in,ref] spoolss_SetPrinterInfoCtr *info_ctr,
2483                 [in,ref] spoolss_DevmodeContainer *devmode_ctr,
2484                 [in,ref] sec_desc_buf *secdesc_ctr,
2485                 [in,ref] spoolss_UserLevelCtr *userlevel_ctr,
2486                 [out,ref] policy_handle *handle
2487         );
2488
2489         /******************/
2490         /* Function: 0x47 */
2491         [todo] WERROR spoolss_47(
2492         );
2493
2494         /******************/
2495         /* Function: 0x48 */
2496         WERROR spoolss_EnumPrinterData(
2497                 [in,ref] policy_handle *handle,
2498                 [in]     uint32 enum_index,
2499                 [out,size_is(value_offered/2),charset(UTF16)] uint16 value_name[],
2500                 [in]     uint32 value_offered,
2501                 [out,ref] uint32 *value_needed,
2502                 [out,ref] winreg_Type *type,
2503                 [out,ref,size_is(data_offered),flag(LIBNDR_PRINT_ARRAY_HEX)] uint8 *data,
2504                 [in]     uint32 data_offered,
2505                 [out,ref] uint32 *data_needed
2506         );
2507
2508         /******************/
2509         /* Function: 0x49 */
2510         WERROR spoolss_DeletePrinterData(
2511                 [in,ref] policy_handle *handle,
2512                 [in] [string,charset(UTF16)] uint16 value_name[]
2513         );
2514
2515         /******************/
2516         /* Function: 0x4a */
2517         [todo] WERROR spoolss_4a(
2518         );
2519
2520         /******************/
2521         /* Function: 0x4b */
2522         [todo] WERROR spoolss_4b(
2523         );
2524
2525         /******************/
2526         /* Function: 0x4c */
2527         [todo] WERROR spoolss_4c(
2528         );
2529
2530         /******************/
2531         /* Function: 0x4d */
2532         [noopnum,nopull,noprint,public] WERROR _spoolss_SetPrinterDataEx(
2533                 [in,ref] policy_handle *handle,
2534                 [in] [string,charset(UTF16)] uint16 key_name[],
2535                 [in] [string,charset(UTF16)] uint16 value_name[],
2536                 [in] winreg_Type type,
2537                 [in] DATA_BLOB data,
2538                 [in] uint32 _offered
2539         );
2540         [noopnum,nopull,noprint,public] void __spoolss_SetPrinterDataEx(
2541                 [in] winreg_Type type,
2542                 [out,ref,switch_is(type)] spoolss_PrinterData *data
2543         );
2544         [nopush] WERROR spoolss_SetPrinterDataEx(
2545                 [in,ref] policy_handle *handle,
2546                 [in] [string,charset(UTF16)] uint16 key_name[],
2547                 [in] [string,charset(UTF16)] uint16 value_name[],
2548                 [in] winreg_Type type,
2549                 [in,subcontext(4),switch_is(type)] spoolss_PrinterData data,
2550                 [in,value(ndr_size_spoolss_PrinterData(&data,type,ndr->iconv_convenience,flags))] uint32 _offered
2551         );
2552
2553         /******************/
2554         /* Function: 0x4e */
2555         [noopnum,noprint,public] WERROR _spoolss_GetPrinterDataEx(
2556                 [in,ref] policy_handle *handle,
2557                 [in]     [string,charset(UTF16)] uint16 key_name[],
2558                 [in]     [string,charset(UTF16)] uint16 value_name[],
2559                 [in]     uint32 offered,
2560                 [out,ref] winreg_Type *type,
2561                 [out,ref] DATA_BLOB *data,
2562                 [out,ref] uint32 *needed
2563         );
2564         [noopnum,noprint,public] void __spoolss_GetPrinterDataEx(
2565                 [in] winreg_Type type,
2566                 [out,ref,switch_is(type)] spoolss_PrinterData *data
2567         );
2568         [nopull,nopush,public] WERROR spoolss_GetPrinterDataEx(
2569                 [in,ref] policy_handle *handle,
2570                 [in]     [string,charset(UTF16)] uint16 key_name[],
2571                 [in]     [string,charset(UTF16)] uint16 value_name[],
2572                 [in]     uint32 offered,
2573                 [out,ref] winreg_Type *type,
2574                 [out,ref,subcontext(4),subcontext_size(offered),switch_is(*type)] spoolss_PrinterData *data,
2575                 [out,ref] uint32 *needed
2576         );
2577
2578         /******************/
2579         /* Function: 0x4f */
2580
2581         typedef [relative_base,public,gensize] struct {
2582                 [relative] nstring *value_name;
2583                 [value(2*strlen_m_term(value_name))] uint32 value_name_len;
2584                 winreg_Type type;
2585                 [relative,switch_is(type),subcontext(0),subcontext_size(r->data_length)] spoolss_PrinterData *data;
2586                 [value(ndr_size_spoolss_PrinterData(data, type, ndr->iconv_convenience, ndr->flags))] uint32 data_length;
2587         } spoolss_PrinterEnumValues;
2588
2589         [public,noopnum,noprint] WERROR _spoolss_EnumPrinterDataEx(
2590                 [in,ref] policy_handle *handle,
2591                 [in]     [string,charset(UTF16)] uint16 key_name[],
2592                 [out] DATA_BLOB info,
2593                 [in] uint32 offered,
2594                 [out,ref] uint32 *needed,
2595                 [out,ref] uint32 *count
2596         );
2597         [public,noopnum,noprint] void __spoolss_EnumPrinterDataEx(
2598                 [in] uint32 count,
2599                 [out] spoolss_PrinterEnumValues info[count]
2600         );
2601         [nopull,nopush] WERROR spoolss_EnumPrinterDataEx(
2602                 [in,ref] policy_handle *handle,
2603                 [in]     [string,charset(UTF16)] uint16 key_name[],
2604                 [in] uint32 offered,
2605                 [out,ref] uint32 *count,
2606                 [out,ref,size_is(,*count)] spoolss_PrinterEnumValues **info,
2607                 [out,ref] uint32 *needed
2608         );
2609
2610         /******************/
2611         /* Function: 0x50 */
2612         [public] WERROR spoolss_EnumPrinterKey(
2613                 [in, ref] policy_handle *handle,
2614                 [in] [string,charset(UTF16)] uint16 key_name[],
2615                 [out,ref] spoolss_StringArray2 *key_buffer,
2616                 [in] uint32 offered,
2617                 [out,ref] uint32 *needed
2618         );
2619
2620         /******************/
2621         /* Function: 0x51 */
2622         WERROR spoolss_DeletePrinterDataEx(
2623                 [in,ref] policy_handle *handle,
2624                 [in] [string,charset(UTF16)] uint16 key_name[],
2625                 [in] [string,charset(UTF16)] uint16 value_name[]
2626         );
2627
2628         /******************/
2629         /* Function: 0x52 */
2630         WERROR spoolss_DeletePrinterKey(
2631                 [in,ref] policy_handle *handle,
2632                 [in] [string,charset(UTF16)] uint16 key_name[]
2633         );
2634
2635         /******************/
2636         /* Function: 0x53 */
2637         [todo] WERROR spoolss_53(
2638         );
2639
2640         /******************/
2641         /* Function: 0x54 */
2642         typedef [public,bitmap32bit] bitmap {
2643                 DPD_DELETE_UNUSED_FILES         = 0x00000001,
2644                 DPD_DELETE_SPECIFIC_VERSION     = 0x00000002,
2645                 DPD_DELETE_ALL_FILES            = 0x00000004
2646         } spoolss_DeleteDriverFlags;
2647
2648         WERROR spoolss_DeletePrinterDriverEx(
2649                 [in,unique] [string,charset(UTF16)] uint16 *server,
2650                 [in] [string,charset(UTF16)] uint16 architecture[],
2651                 [in] [string,charset(UTF16)] uint16 driver[],
2652                 [in] spoolss_DeleteDriverFlags delete_flags,
2653                 [in] uint32 version
2654         );
2655
2656         /******************/
2657         /* Function: 0x55 */
2658         [todo] WERROR spoolss_55(
2659         );
2660
2661         /******************/
2662         /* Function: 0x56 */
2663         [todo] WERROR spoolss_56(
2664         );
2665
2666         /******************/
2667         /* Function: 0x57 */
2668         [todo] WERROR spoolss_57(
2669         );
2670
2671         /******************/
2672         /* Function: 0x58 */
2673
2674         typedef [v1_enum] enum {
2675                 PROTOCOL_RAWTCP_TYPE    = 1,
2676                 PROTOCOL_LPR_TYPE       = 2
2677         } spoolss_PortProtocol;
2678
2679         typedef [public] struct {
2680                 [charset(UTF16)] uint16 portname[64];
2681                 [value(0x00000001)] uint32 version;
2682                 spoolss_PortProtocol protocol;
2683                 [value(sizeof(r))] uint32 size;
2684                 uint32 reserved;
2685                 [charset(UTF16)] uint16 hostaddress[49];
2686                 [charset(UTF16)] uint16 snmpcommunity[33];
2687                 uint32 dblspool;
2688                 [charset(UTF16)] uint16 queue[33];
2689                 [charset(UTF16)] uint16 ip_address[16]; /* s3 had 17 */
2690                 [charset(UTF16)] uint16 hardware_address[13];
2691                 [charset(UTF16)] uint16 device_type[257];
2692                 uint32 port_number;
2693                 boolean32 snmp_enabled;
2694                 uint32 snmp_dev_index;
2695         } spoolss_PortData1;
2696
2697         typedef [public] struct {
2698                 [charset(UTF16)] uint16 portname[64];
2699                 [value(0x00000002)] uint32 version;
2700                 spoolss_PortProtocol protocol;
2701                 [value(sizeof(r))] uint32 size;
2702                 uint32 reserved;
2703                 [charset(UTF16)] uint16 hostaddress[128];
2704                 [charset(UTF16)] uint16 snmpcommunity[33];
2705                 uint32 dblspool;
2706                 [charset(UTF16)] uint16 queue[33];
2707                 [charset(UTF16)] uint16 device_type[257];
2708                 uint32 port_number;
2709                 boolean32 snmp_enabled;
2710                 uint32 snmp_dev_index;
2711                 uint32 port_monitor_mib_index;
2712         } spoolss_PortData2;
2713
2714         typedef [public] struct {
2715                 nstring dll_name;
2716         } spoolss_MonitorUi;
2717
2718         WERROR spoolss_XcvData(
2719                 [in,ref] policy_handle *handle,
2720                 [in] [string,charset(UTF16)] uint16 function_name[],
2721                 [in] DATA_BLOB in_data,
2722                 [in,value(r->in.in_data.length)] uint32 _in_data_length,
2723                 [out,ref] [size_is(out_data_size)] uint8 *out_data,
2724                 [in] uint32 out_data_size,
2725                 [out,ref] uint32 *needed,
2726                 [in,out,ref] uint32 *status_code
2727         );
2728
2729         /******************/
2730         /* Function: 0x59 */
2731
2732         typedef [bitmap32bit] bitmap {
2733                 APD_STRICT_UPGRADE              = 0x00000001,
2734                 APD_STRICT_DOWNGRADE            = 0x00000002,
2735                 APD_COPY_ALL_FILES              = 0x00000004,
2736                 APD_COPY_NEW_FILES              = 0x00000008,
2737                 APD_COPY_FROM_DIRECTORY         = 0x00000010,
2738                 APD_DONT_COPY_FILES_TO_CLUSTER  = 0x00001000,
2739                 APD_COPY_TO_ALL_SPOOLERS        = 0x00002000,
2740                 APD_RETURN_BLOCKING_STATUS_CODE = 0x00010000
2741         } spoolss_AddPrinterDriverExFlags;
2742
2743         [public] WERROR spoolss_AddPrinterDriverEx(
2744                 [in,unique] [string,charset(UTF16)] uint16 *servername,
2745                 [in,ref] spoolss_AddDriverInfoCtr *info_ctr,
2746                 [in] spoolss_AddPrinterDriverExFlags flags
2747         );
2748
2749         /******************/
2750         /* Function: 0x5a */
2751         [todo] WERROR spoolss_5a(
2752         );
2753
2754         /******************/
2755         /* Function: 0x5b */
2756         [todo] WERROR spoolss_5b(
2757         );
2758
2759         /******************/
2760         /* Function: 0x5c */
2761         [todo] WERROR spoolss_5c(
2762         );
2763
2764         /******************/
2765         /* Function: 0x5d */
2766         [todo] WERROR spoolss_5d(
2767         );
2768
2769         /******************/
2770         /* Function: 0x5e */
2771         [todo] WERROR spoolss_5e(
2772         );
2773
2774         /******************/
2775         /* Function: 0x5f */
2776         [todo] WERROR spoolss_5f(
2777         );
2778
2779         /******************/
2780         /* Function: 0x60 */
2781         [todo] WERROR spoolss_60(
2782         );
2783
2784         /******************/
2785         /* Function: 0x61 */
2786         [todo] WERROR spoolss_61(
2787         );
2788
2789         /******************/
2790         /* Function: 0x62 */
2791         [todo] WERROR spoolss_62(
2792         );
2793
2794         /******************/
2795         /* Function: 0x63 */
2796         [todo] WERROR spoolss_63(
2797         );
2798
2799         /******************/
2800         /* Function: 0x64 */
2801         [todo] WERROR spoolss_64(
2802         );
2803
2804         /******************/
2805         /* Function: 0x65 */
2806         [todo] WERROR spoolss_65(
2807         );
2808
2809         /******************/
2810         /* Function: 0x66 */
2811         typedef struct {
2812                 GUID core_driver_guid;
2813                 NTTIME driver_date;
2814                 hyper driver_version;
2815                 [charset(UTF8)] uint8 formname[520];
2816         } spoolss_CorePrinterDriver;
2817
2818         WERROR spoolss_GetCorePrinterDrivers(
2819                 [in,unique] [string,charset(UTF16)] uint16 *servername,
2820                 [in,ref] [string,charset(UTF16)] uint16 *architecture,
2821                 [in] uint32 core_driver_size,
2822                 [in,size_is(core_driver_size)] [charset(UTF16)] uint16 *core_driver_dependencies,
2823                 [in] uint32 core_printer_driver_count,
2824                 [out,size_is(core_printer_driver_count)] spoolss_CorePrinterDriver *core_printer_drivers
2825         );
2826
2827         /******************/
2828         /* Function: 0x67 */
2829         [todo] WERROR spoolss_67(
2830         );
2831
2832         /******************/
2833         /* Function: 0x68 */
2834         WERROR spoolss_GetPrinterDriverPackagePath(
2835                 [in,unique] [string,charset(UTF16)] uint16 *servername,
2836                 [in,ref] [string,charset(UTF16)] uint16 *architecture,
2837                 [in,unique] [string,charset(UTF16)] uint16 *language,
2838                 [in,ref] [string,charset(UTF16)] uint16 *package_id,
2839                 [in,out,unique,size_is(driver_package_cab_size)] [charset(UTF16)] uint16 *driver_package_cab,
2840                 [in] uint32 driver_package_cab_size,
2841                 [out,ref] uint32 *required
2842                 );
2843
2844         /******************/
2845         /* Function: 0x69 */
2846         [todo] WERROR spoolss_69(
2847         );
2848
2849         /******************/
2850         /* Function: 0x6a */
2851         [todo] WERROR spoolss_6a(
2852         );
2853
2854         /******************/
2855         /* Function: 0x6b */
2856         [todo] WERROR spoolss_6b(
2857         );
2858
2859         /******************/
2860         /* Function: 0x6c */
2861         [todo] WERROR spoolss_6c(
2862         );
2863
2864         /******************/
2865         /* Function: 0x6d */
2866         [todo] WERROR spoolss_6d(
2867         );
2868 }