summaryrefslogtreecommitdiff
path: root/source3/python/py_spoolss.c
diff options
context:
space:
mode:
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 }