summaryrefslogtreecommitdiff
path: root/source4/ntptr/ntptr_interface.c
blob: b65a2e32cd52314728b732e19a16139e47e850ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
/* 
   Unix SMB/CIFS implementation.

   NTPTR interface functions

   Copyright (C) Stefan (metze) Metzmacher 2005

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   
   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#include "includes.h"
#include "ntptr/ntptr.h"


/* PrintServer functions */
WERROR ntptr_OpenPrintServer(struct ntptr_context *ntptr, TALLOC_CTX *mem_ctx,
			     struct spoolss_OpenPrinterEx *r,
			     const char *printer_name,
			     struct ntptr_GenericHandle **server)
{
	if (!ntptr->ops->OpenPrintServer) {
		return WERR_NOT_SUPPORTED;
	}
	return ntptr->ops->OpenPrintServer(ntptr, mem_ctx, r, printer_name, server);
}

WERROR ntptr_XcvDataPrintServer(struct ntptr_GenericHandle *server, TALLOC_CTX *mem_ctx,
				struct spoolss_XcvData *r)
{
	if (server->type != NTPTR_HANDLE_SERVER) {
		return WERR_FOOBAR;
	}
	if (!server->ntptr->ops->XcvDataPrintServer) {
		return WERR_NOT_SUPPORTED;
	}
	return server->ntptr->ops->XcvDataPrintServer(server, mem_ctx, r);
}


/* PrintServer PrinterData functions */
WERROR ntptr_EnumPrintServerData(struct ntptr_GenericHandle *server, TALLOC_CTX *mem_ctx,
				 struct spoolss_EnumPrinterData *r)
{
	if (server->type != NTPTR_HANDLE_SERVER) {
		return WERR_FOOBAR;
	}
	if (!server->ntptr->ops->EnumPrintServerData) {
		return WERR_NOT_SUPPORTED;
	}
	return server->ntptr->ops->EnumPrintServerData(server, mem_ctx, r);
}

WERROR ntptr_GetPrintServerData(struct ntptr_GenericHandle *server, TALLOC_CTX *mem_ctx,
				struct spoolss_GetPrinterData *r)
{
	if (server->type != NTPTR_HANDLE_SERVER) {
		return WERR_FOOBAR;
	}
	if (!server->ntptr->ops->GetPrintServerData) {
		return WERR_NOT_SUPPORTED;
	}
	return server->ntptr->ops->GetPrintServerData(server, mem_ctx, r);
}

WERROR ntptr_SetPrintServerData(struct ntptr_GenericHandle *server, TALLOC_CTX *mem_ctx,
				struct spoolss_SetPrinterData *r)
{
	if (server->type != NTPTR_HANDLE_SERVER) {
		return WERR_FOOBAR;
	}
	if (!server->ntptr->ops->SetPrintServerData) {
		return WERR_NOT_SUPPORTED;
	}
	return server->ntptr->ops->SetPrintServerData(server, mem_ctx, r);
}

WERROR ntptr_DeletePrintServerData(struct ntptr_GenericHandle *server, TALLOC_CTX *mem_ctx,
				   struct spoolss_DeletePrinterData *r)
{
	if (server->type != NTPTR_HANDLE_SERVER) {
		return WERR_FOOBAR;
	}
	if (!server->ntptr->ops->DeletePrintServerData) {
		return WERR_NOT_SUPPORTED;
	}
	return server->ntptr->ops->DeletePrintServerData(server, mem_ctx, r);
}


/* PrintServer Form functions */
WERROR ntptr_EnumPrintServerForms(struct ntptr_GenericHandle *server, TALLOC_CTX *mem_ctx,
				  struct spoolss_EnumForms *r)
{
	if (server->type != NTPTR_HANDLE_SERVER) {
		return WERR_FOOBAR;
	}
	if (!server->ntptr->ops->EnumPrintServerForms) {
		return WERR_NOT_SUPPORTED;
	}
	return server->ntptr->ops->EnumPrintServerForms(server, mem_ctx, r);
}

WERROR ntptr_AddPrintServerForm(struct ntptr_GenericHandle *server, TALLOC_CTX *mem_ctx,
				struct spoolss_AddForm *r)
{
	if (server->type != NTPTR_HANDLE_SERVER) {
		return WERR_FOOBAR;
	}
	if (!server->ntptr->ops->AddPrintServerForm) {
		return WERR_NOT_SUPPORTED;
	}
	return server->ntptr->ops->AddPrintServerForm(server, mem_ctx, r);
}

WERROR ntptr_SetPrintServerForm(struct ntptr_GenericHandle *server, TALLOC_CTX *mem_ctx,
				struct spoolss_SetForm *r)
{
	if (server->type != NTPTR_HANDLE_SERVER) {
		return WERR_FOOBAR;
	}
	if (!server->ntptr->ops->SetPrintServerForm) {
		return WERR_NOT_SUPPORTED;
	}
	return server->ntptr->ops->SetPrintServerForm(server, mem_ctx, r);
}

WERROR ntptr_DeletePrintServerForm(struct ntptr_GenericHandle *server, TALLOC_CTX *mem_ctx,
				   struct spoolss_DeleteForm *r)
{
	if (server->type != NTPTR_HANDLE_SERVER) {
		return WERR_FOOBAR;
	}
	if (!server->ntptr->ops->DeletePrintServerForm) {
		return WERR_NOT_SUPPORTED;
	}
	return server->ntptr->ops->DeletePrintServerForm(server, mem_ctx, r);
}


/* PrintServer Driver functions */
WERROR ntptr_EnumPrinterDrivers(struct ntptr_context *ntptr, TALLOC_CTX *mem_ctx,
				struct spoolss_EnumPrinterDrivers *r)
{
	if (!ntptr->ops->EnumPrinterDrivers) {
		return WERR_NOT_SUPPORTED;
	}
	return ntptr->ops->EnumPrinterDrivers(ntptr, mem_ctx, r);
}

WERROR ntptr_AddPrinterDriver(struct ntptr_context *ntptr, TALLOC_CTX *mem_ctx,
			      struct spoolss_AddPrinterDriver *r)
{
	if (!ntptr->ops->AddPrinterDriver) {
		return WERR_NOT_SUPPORTED;
	}
	return ntptr->ops->AddPrinterDriver(ntptr, mem_ctx, r);
}

WERROR ntptr_DeletePrinterDriver(struct ntptr_context *ntptr, TALLOC_CTX *mem_ctx,
				 struct spoolss_DeletePrinterDriver *r)
{
	if (!ntptr->ops->DeletePrinterDriver) {
		return WERR_NOT_SUPPORTED;
	}
	return ntptr->ops->DeletePrinterDriver(ntptr, mem_ctx, r);
}

WERROR ntptr_GetPrinterDriverDirectory(struct ntptr_context *ntptr, TALLOC_CTX *mem_ctx,
				 struct spoolss_GetPrinterDriverDirectory *r)
{
	if (!ntptr->ops->GetPrinterDriverDirectory) {
		return WERR_NOT_SUPPORTED;
	}
	return ntptr->ops->GetPrinterDriverDirectory(ntptr, mem_ctx, r);
}


/* Port functions */
WERROR ntptr_EnumPorts(struct ntptr_context *ntptr, TALLOC_CTX *mem_ctx,
		       struct spoolss_EnumPorts *r)
{
	if (!ntptr->ops->EnumPorts) {
		return WERR_NOT_SUPPORTED;
	}
	return ntptr->ops->EnumPorts(ntptr, mem_ctx, r);
}

WERROR ntptr_OpenPort(struct ntptr_context *ntptr, TALLOC_CTX *mem_ctx,
		      struct spoolss_OpenPrinterEx *r,
		      const char *port_name,
		      struct ntptr_GenericHandle **port)
{
	if (!ntptr->ops->OpenPort) {
		return WERR_NOT_SUPPORTED;
	}
	return ntptr->ops->OpenPort(ntptr, mem_ctx, r, port_name, port);
}

WERROR ntptr_XcvDataPort(struct ntptr_GenericHandle *port, TALLOC_CTX *mem_ctx,
			 struct spoolss_XcvData *r)
{
	if (port->type != NTPTR_HANDLE_PORT) {
		return WERR_FOOBAR;
	}
	if (!port->ntptr->ops->XcvDataPort) {
		return WERR_NOT_SUPPORTED;
	}
	return port->ntptr->ops->XcvDataPort(port, mem_ctx, r);
}

/* Monitor functions */
WERROR ntptr_EnumMonitors(struct ntptr_context *ntptr, TALLOC_CTX *mem_ctx,
			  struct spoolss_EnumMonitors *r)
{
	if (!ntptr->ops->EnumMonitors) {
		return WERR_NOT_SUPPORTED;
	}
	return ntptr->ops->EnumMonitors(ntptr, mem_ctx, r);
}

WERROR ntptr_OpenMonitor(struct ntptr_context *ntptr, TALLOC_CTX *mem_ctx,
			 struct spoolss_OpenPrinterEx *r,
			 const char *monitor_name,
			 struct ntptr_GenericHandle **monitor)
{
	if (!ntptr->ops->OpenMonitor) {
		return WERR_NOT_SUPPORTED;
	}
	return ntptr->ops->OpenMonitor(ntptr, mem_ctx, r, monitor_name, monitor);
}

WERROR ntptr_XcvDataMonitor(struct ntptr_GenericHandle *monitor, TALLOC_CTX *mem_ctx,
			    struct spoolss_XcvData *r)
{
	if (monitor->type != NTPTR_HANDLE_MONITOR) {
		return WERR_FOOBAR;
	}
	if (!monitor->ntptr->ops->XcvDataMonitor) {
		return WERR_NOT_SUPPORTED;
	}
	return monitor->ntptr->ops->XcvDataMonitor(monitor, mem_ctx, r);
}


/* PrintProcessor functions */
WERROR ntptr_EnumPrintProcessors(struct ntptr_context *ntptr, TALLOC_CTX *mem_ctx,
				 struct spoolss_EnumPrintProcessors *r)
{
	if (!ntptr->ops->EnumPrintProcessors) {
		return WERR_NOT_SUPPORTED;
	}
	return ntptr->ops->EnumPrintProcessors(ntptr, mem_ctx, r);
}

WERROR ntptr_GetPrintProcessorDirectory(struct ntptr_context *ntptr, TALLOC_CTX *mem_ctx,
					struct spoolss_GetPrintProcessorDirectory *r)
{
	if (!ntptr->ops->GetPrintProcessorDirectory) {
		return WERR_NOT_SUPPORTED;
	}
	return ntptr->ops->GetPrintProcessorDirectory(ntptr, mem_ctx, r);
}


/* Printer functions */
WERROR ntptr_EnumPrinters(struct ntptr_context *ntptr, TALLOC_CTX *mem_ctx,
			  struct spoolss_EnumPrinters *r)
{
	if (!ntptr->ops->EnumPrinters) {
		return WERR_NOT_SUPPORTED;
	}
	return ntptr->ops->EnumPrinters(ntptr, mem_ctx, r);
}

WERROR ntptr_OpenPrinter(struct ntptr_context *ntptr, TALLOC_CTX *mem_ctx,
			 struct spoolss_OpenPrinterEx *r,
			 const char *printer_name,
			 struct ntptr_GenericHandle **printer)
{
	if (!ntptr->ops->OpenPrinter) {
		return WERR_NOT_SUPPORTED;
	}
	return ntptr->ops->OpenPrinter(ntptr, mem_ctx, r, printer_name, printer);
}

WERROR ntptr_AddPrinter(struct ntptr_context *ntptr, TALLOC_CTX *mem_ctx,
			struct spoolss_AddPrinter *r,
			struct ntptr_GenericHandle **printer)
{
	if (!ntptr->ops->AddPrinter) {
		return WERR_NOT_SUPPORTED;
	}
	return ntptr->ops->AddPrinter(ntptr, mem_ctx, r, printer);
}

WERROR ntptr_GetPrinter(struct ntptr_context *ntptr, TALLOC_CTX *mem_ctx,
			struct spoolss_GetPrinter *r)
{
	if (!ntptr->ops->GetPrinter) {
		return WERR_NOT_SUPPORTED;
	}
	return ntptr->ops->GetPrinter(ntptr, mem_ctx, r);
}

WERROR ntptr_SetPrinter(struct ntptr_context *ntptr, TALLOC_CTX *mem_ctx,
			struct spoolss_SetPrinter *r)
{
	if (!ntptr->ops->SetPrinter) {
		return WERR_NOT_SUPPORTED;
	}
	return ntptr->ops->SetPrinter(ntptr, mem_ctx, r);
}

WERROR ntptr_DeletePrinter(struct ntptr_context *ntptr, TALLOC_CTX *mem_ctx,
			   struct spoolss_DeletePrinter *r)
{
	if (!ntptr->ops->DeletePrinter) {
		return WERR_NOT_SUPPORTED;
	}
	return ntptr->ops->DeletePrinter(ntptr, mem_ctx, r);
}

WERROR ntptr_XcvDataPrinter(struct ntptr_GenericHandle *printer, TALLOC_CTX *mem_ctx,
			    struct spoolss_XcvData *r)
{
	if (printer->type != NTPTR_HANDLE_PRINTER) {
		return WERR_FOOBAR;
	}
	if (!printer->ntptr->ops->XcvDataPrinter) {
		return WERR_NOT_SUPPORTED;
	}
	return printer->ntptr->ops->XcvDataPrinter(printer, mem_ctx, r);
}


/* Printer Driver functions */
WERROR ntptr_GetPrinterDriver(struct ntptr_context *ntptr, TALLOC_CTX *mem_ctx,
			      struct spoolss_GetPrinterDriver *r)
{
	if (!ntptr->ops->GetPrinterDriver) {
		return WERR_NOT_SUPPORTED;
	}
	return ntptr->ops->GetPrinterDriver(ntptr, mem_ctx, r);
}


/* Printer PrinterData functions */
WERROR ntptr_EnumPrinterData(struct ntptr_GenericHandle *printer, TALLOC_CTX *mem_ctx,
			     struct spoolss_EnumPrinterData *r)
{
	if (printer->type != NTPTR_HANDLE_PRINTER) {
		return WERR_FOOBAR;
	}
	if (!printer->ntptr->ops->EnumPrinterData) {
		return WERR_NOT_SUPPORTED;
	}
	return printer->ntptr->ops->EnumPrinterData(printer, mem_ctx, r);
}

WERROR ntptr_GetPrinterData(struct ntptr_GenericHandle *printer, TALLOC_CTX *mem_ctx,
			    struct spoolss_GetPrinterData *r)
{
	if (printer->type != NTPTR_HANDLE_PRINTER) {
		return WERR_FOOBAR;
	}
	if (!printer->ntptr->ops->GetPrinterData) {
		return WERR_NOT_SUPPORTED;
	}
	return printer->ntptr->ops->GetPrinterData(printer, mem_ctx, r);
}

WERROR ntptr_SetPrinterData(struct ntptr_GenericHandle *printer, TALLOC_CTX *mem_ctx,
			    struct spoolss_SetPrinterData *r)
{
	if (printer->type != NTPTR_HANDLE_PRINTER) {
		return WERR_FOOBAR;
	}
	if (!printer->ntptr->ops->SetPrinterData) {
		return WERR_NOT_SUPPORTED;
	}
	return printer->ntptr->ops->SetPrinterData(printer, mem_ctx, r);
}

WERROR ntptr_DeletePrinterData(struct ntptr_GenericHandle *printer, TALLOC_CTX *mem_ctx,
			       struct spoolss_DeletePrinterData *r)
{
	if (printer->type != NTPTR_HANDLE_PRINTER) {
		return WERR_FOOBAR;
	}
	if (!printer->ntptr->ops->DeletePrinterData) {
		return WERR_NOT_SUPPORTED;
	}
	return printer->ntptr->ops->DeletePrinterData(printer, mem_ctx, r);
}


/* Printer Form functions */
WERROR ntptr_EnumPrinterForms(struct ntptr_GenericHandle *printer, TALLOC_CTX *mem_ctx,
			      struct spoolss_EnumForms *r)
{
	if (printer->type != NTPTR_HANDLE_PRINTER) {
		return WERR_FOOBAR;
	}
	if (!printer->ntptr->ops->EnumPrinterForms) {
		return WERR_NOT_SUPPORTED;
	}
	return printer->ntptr->ops->EnumPrinterForms(printer, mem_ctx, r);
}

WERROR ntptr_AddPrinterForm(struct ntptr_GenericHandle *printer, TALLOC_CTX *mem_ctx,
			    struct spoolss_AddForm *r)
{
	if (printer->type != NTPTR_HANDLE_PRINTER) {
		return WERR_FOOBAR;
	}
	if (!printer->ntptr->ops->AddPrinterForm) {
		return WERR_NOT_SUPPORTED;
	}
	return printer->ntptr->ops->AddPrinterForm(printer, mem_ctx, r);
}

WERROR ntptr_GetPrinterForm(struct ntptr_GenericHandle *printer, TALLOC_CTX *mem_ctx,
			    struct spoolss_GetForm *r)
{
	if (printer->type != NTPTR_HANDLE_PRINTER) {
		return WERR_FOOBAR;
	}
	if (!printer->ntptr->ops->GetPrinterForm) {
		return WERR_NOT_SUPPORTED;
	}
	return printer->ntptr->ops->GetPrinterForm(printer, mem_ctx, r);
}

WERROR ntptr_SetPrinterForm(struct ntptr_GenericHandle *printer, TALLOC_CTX *mem_ctx,
			    struct spoolss_SetForm *r)
{
	if (printer->type != NTPTR_HANDLE_PRINTER) {
		return WERR_FOOBAR;
	}
	if (!printer->ntptr->ops->SetPrinterForm) {
		return WERR_NOT_SUPPORTED;
	}
	return printer->ntptr->ops->SetPrinterForm(printer, mem_ctx, r);
}

WERROR ntptr_DeletePrinterForm(struct ntptr_GenericHandle *printer, TALLOC_CTX *mem_ctx,
			       struct spoolss_DeleteForm *r)
{
	if (printer->type != NTPTR_HANDLE_PRINTER) {
		return WERR_FOOBAR;
	}
	if (!printer->ntptr->ops->DeletePrinterForm) {
		return WERR_NOT_SUPPORTED;
	}
	return printer->ntptr->ops->DeletePrinterForm(printer, mem_ctx, r);
}


/* Printer Job functions */
WERROR ntptr_EnumJobs(struct ntptr_GenericHandle *printer, TALLOC_CTX *mem_ctx,
		      struct spoolss_EnumJobs *r)
{
	if (printer->type != NTPTR_HANDLE_PRINTER) {
		return WERR_FOOBAR;
	}
	if (!printer->ntptr->ops->EnumJobs) {
		return WERR_NOT_SUPPORTED;
	}
	return printer->ntptr->ops->EnumJobs(printer, mem_ctx, r);
}

WERROR ntptr_AddJob(struct ntptr_GenericHandle *printer, TALLOC_CTX *mem_ctx,
		    struct spoolss_AddJob *r)
{
	if (printer->type != NTPTR_HANDLE_PRINTER) {
		return WERR_FOOBAR;
	}
	if (!printer->ntptr->ops->AddJob) {
		return WERR_NOT_SUPPORTED;
	}
	return printer->ntptr->ops->AddJob(printer, mem_ctx, r);
}

WERROR ntptr_ScheduleJob(struct ntptr_GenericHandle *printer, TALLOC_CTX *mem_ctx,
			 struct spoolss_ScheduleJob *r)
{
	if (printer->type != NTPTR_HANDLE_PRINTER) {
		return WERR_FOOBAR;
	}
	if (!printer->ntptr->ops->ScheduleJob) {
		return WERR_NOT_SUPPORTED;
	}
	return printer->ntptr->ops->ScheduleJob(printer, mem_ctx, r);
}

WERROR ntptr_GetJob(struct ntptr_GenericHandle *printer, TALLOC_CTX *mem_ctx,
		    struct spoolss_GetJob *r)
{
	if (printer->type != NTPTR_HANDLE_PRINTER) {
		return WERR_FOOBAR;
	}
	if (!printer->ntptr->ops->GetJob) {
		return WERR_NOT_SUPPORTED;
	}
	return printer->ntptr->ops->GetJob(printer, mem_ctx, r);
}

WERROR ntptr_SetJob(struct ntptr_GenericHandle *printer, TALLOC_CTX *mem_ctx,
		    struct spoolss_SetJob *r)
{
	if (printer->type != NTPTR_HANDLE_PRINTER) {
		return WERR_FOOBAR;
	}
	if (!printer->ntptr->ops->SetJob) {
		return WERR_NOT_SUPPORTED;
	}
	return printer->ntptr->ops->SetJob(printer, mem_ctx, r);
}


/* Printer Printing functions */
WERROR ntptr_StartDocPrinter(struct ntptr_GenericHandle *printer, TALLOC_CTX *mem_ctx,
			     struct spoolss_StartDocPrinter *r)
{
	if (printer->type != NTPTR_HANDLE_PRINTER) {
		return WERR_FOOBAR;
	}
	if (!printer->ntptr->ops->StartDocPrinter) {
		return WERR_NOT_SUPPORTED;
	}
	return printer->ntptr->ops->StartDocPrinter(printer, mem_ctx, r);
}

WERROR ntptr_EndDocPrinter(struct ntptr_GenericHandle *printer, TALLOC_CTX *mem_ctx,
			   struct spoolss_EndDocPrinter *r)
{
	if (printer->type != NTPTR_HANDLE_PRINTER) {
		return WERR_FOOBAR;
	}
	if (!printer->ntptr->ops->EndDocPrinter) {
		return WERR_NOT_SUPPORTED;
	}
	return printer->ntptr->ops->EndDocPrinter(printer, mem_ctx, r);
}

WERROR ntptr_StartPagePrinter(struct ntptr_GenericHandle *printer, TALLOC_CTX *mem_ctx,
			      struct spoolss_StartPagePrinter *r)
{
	if (printer->type != NTPTR_HANDLE_PRINTER) {
		return WERR_FOOBAR;
	}
	if (!printer->ntptr->ops->StartPagePrinter) {
		return WERR_NOT_SUPPORTED;
	}
	return printer->ntptr->ops->StartPagePrinter(printer, mem_ctx, r);
}

WERROR ntptr_EndPagePrinter(struct ntptr_GenericHandle *printer, TALLOC_CTX *mem_ctx,
			    struct spoolss_EndPagePrinter *r)
{
	if (printer->type != NTPTR_HANDLE_PRINTER) {
		return WERR_FOOBAR;
	}
	if (!printer->ntptr->ops->EndPagePrinter) {
		return WERR_NOT_SUPPORTED;
	}
	return printer->ntptr->ops->EndPagePrinter(printer, mem_ctx, r);
}

WERROR ntptr_WritePrinter(struct ntptr_GenericHandle *printer, TALLOC_CTX *mem_ctx,
			  struct spoolss_WritePrinter *r)
{
	if (printer->type != NTPTR_HANDLE_PRINTER) {
		return WERR_FOOBAR;
	}
	if (!printer->ntptr->ops->WritePrinter) {
		return WERR_NOT_SUPPORTED;
	}
	return printer->ntptr->ops->WritePrinter(printer, mem_ctx, r);
}

WERROR ntptr_ReadPrinter(struct ntptr_GenericHandle *printer, TALLOC_CTX *mem_ctx,
			 struct spoolss_ReadPrinter *r)
{
	if (printer->type != NTPTR_HANDLE_PRINTER) {
		return WERR_FOOBAR;
	}
	if (!printer->ntptr->ops->ReadPrinter) {
		return WERR_NOT_SUPPORTED;
	}
	return printer->ntptr->ops->ReadPrinter(printer, mem_ctx, r);
}