diff options
author | Gerald Carter <jerry@samba.org> | 2004-10-19 17:05:01 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:53:00 -0500 |
commit | 293136c04b7eb5293ef18273e13fca00c85bb5f0 (patch) | |
tree | 122bc0f24b690926d2f43aad98401052ce4f8ace /source3/include | |
parent | f2aca08c653a61dc4d6e99263dda7b649ef648b0 (diff) | |
download | samba-293136c04b7eb5293ef18273e13fca00c85bb5f0.tar.gz samba-293136c04b7eb5293ef18273e13fca00c85bb5f0.tar.bz2 samba-293136c04b7eb5293ef18273e13fca00c85bb5f0.zip |
r3067: patch based on volker's initial work in trunk that fixes the queu update problem when using the background daemon
(This used to be commit de7af09e727e744aa27af85ef7c0f73ed5c1550a)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/printing.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/source3/include/printing.h b/source3/include/printing.h index bf7c61b251..fd1e7e43e4 100644 --- a/source3/include/printing.h +++ b/source3/include/printing.h @@ -47,7 +47,13 @@ struct printjob { /* Information for print interfaces */ struct printif { - int (*queue_get)(int snum, print_queue_struct **q, + /* value of the 'printing' option for this service */ + enum printing_types type; + + int (*queue_get)(const char *printer_name, + enum printing_types printing_type, + char *lpq_command, + print_queue_struct **q, print_status_struct *status); int (*queue_pause)(int snum); int (*queue_resume)(int snum); |