summaryrefslogtreecommitdiff
path: root/source3/python/py_spoolss.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-05-13 01:55:04 +0000
committerTim Potter <tpot@samba.org>2002-05-13 01:55:04 +0000
commit950004e125724aa0fea5fe5b74d5e12f48c52017 (patch)
treeb05be181baf9937f3cef445c65e3790a6a9d14ce /source3/python/py_spoolss.c
parentb35c18072a433a9447c996fffe45ff79dadcf43d (diff)
downloadsamba-950004e125724aa0fea5fe5b74d5e12f48c52017.tar.gz
samba-950004e125724aa0fea5fe5b74d5e12f48c52017.tar.bz2
samba-950004e125724aa0fea5fe5b74d5e12f48c52017.zip
Added startdocprinter and enddocprinter.
(This used to be commit 954107a9d314c8d87f65f741804ca3f9ca94432e)
Diffstat (limited to 'source3/python/py_spoolss.c')
-rw-r--r--source3/python/py_spoolss.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/python/py_spoolss.c b/source3/python/py_spoolss.c
index 323b3c3b6f..a8372fd213 100644
--- a/source3/python/py_spoolss.c
+++ b/source3/python/py_spoolss.c
@@ -205,6 +205,14 @@ Set the form given by the dictionary argument.
METH_VARARGS | METH_KEYWORDS,
"Notify spooler that a page is about to be printed." },
+ { "startdocprinter", spoolss_startdocprinter,
+ METH_VARARGS | METH_KEYWORDS,
+ "Notify spooler that a document is about to be printed." },
+
+ { "enddocprinter", spoolss_enddocprinter,
+ METH_VARARGS | METH_KEYWORDS,
+ "Notify spooler that a document is about to be printed." },
+
{ NULL }
};