summaryrefslogtreecommitdiffstats
path: root/source/python/py_spoolss_jobs.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-05-16 02:01:23 +0000
committerTim Potter <tpot@samba.org>2002-05-16 02:01:23 +0000
commite4cc7e2d521cb2777c15c00ec222342e2a0b02ca (patch)
tree4fc69b64f8aac0e1206bb0b8bf9dd1feb25bd97a /source/python/py_spoolss_jobs.c
parenta8fcb151f8ff601774c302b61e694b4522461068 (diff)
downloadsamba-e4cc7e2d521cb2777c15c00ec222342e2a0b02ca.tar.gz
samba-e4cc7e2d521cb2777c15c00ec222342e2a0b02ca.tar.xz
samba-e4cc7e2d521cb2777c15c00ec222342e2a0b02ca.zip
Added addjob command.
Diffstat (limited to 'source/python/py_spoolss_jobs.c')
-rw-r--r--source/python/py_spoolss_jobs.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/python/py_spoolss_jobs.c b/source/python/py_spoolss_jobs.c
index 3a02cdac687..d98fdba1376 100644
--- a/source/python/py_spoolss_jobs.c
+++ b/source/python/py_spoolss_jobs.c
@@ -380,3 +380,9 @@ PyObject *spoolss_hnd_writeprinter(PyObject *self, PyObject *args, PyObject *kw)
Py_INCREF(Py_None);
return Py_None;
}
+
+PyObject *spoolss_hnd_addjob(PyObject *self, PyObject *args, PyObject *kw)
+{
+ PyErr_SetString(spoolss_error, "Not implemented");
+ return NULL;
+}