summaryrefslogtreecommitdiff
path: root/source3/python/py_spoolss.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-05-08 05:50:12 +0000
committerTim Potter <tpot@samba.org>2002-05-08 05:50:12 +0000
commit5e723ce3c089f118e66f55ef78832421531265f8 (patch)
treeb6b5c54bf289c53ab190f6980778fbd1588ddc46 /source3/python/py_spoolss.c
parent26b0e0b478da99f4296c99c6e55ced26b44e591b (diff)
downloadsamba-5e723ce3c089f118e66f55ef78832421531265f8.tar.gz
samba-5e723ce3c089f118e66f55ef78832421531265f8.tar.bz2
samba-5e723ce3c089f118e66f55ef78832421531265f8.zip
Added commands for startpageprinter, endpageprinter, setjob and getjob.
(This used to be commit 3da89aa8e45d08444bfcddb145264bfcd6f6d768)
Diffstat (limited to 'source3/python/py_spoolss.c')
-rw-r--r--source3/python/py_spoolss.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/source3/python/py_spoolss.c b/source3/python/py_spoolss.c
index 51e128ecc0..323b3c3b6f 100644
--- a/source3/python/py_spoolss.c
+++ b/source3/python/py_spoolss.c
@@ -192,7 +192,18 @@ Set the form given by the dictionary argument.
"Enumerate jobs" },
{ "setjob", spoolss_setjob, METH_VARARGS | METH_KEYWORDS,
- "Set job command" },
+ "Set job information" },
+
+ { "getjob", spoolss_getjob, METH_VARARGS | METH_KEYWORDS,
+ "Get job information" },
+
+ { "startpageprinter", spoolss_startpageprinter,
+ METH_VARARGS | METH_KEYWORDS,
+ "Notify spooler that a page is about to be printed." },
+
+ { "endpageprinter", spoolss_endpageprinter,
+ METH_VARARGS | METH_KEYWORDS,
+ "Notify spooler that a page is about to be printed." },
{ NULL }