diff options
author | Tim Potter <tpot@samba.org> | 2002-05-13 01:55:04 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-05-13 01:55:04 +0000 |
commit | 954107a9d314c8d87f65f741804ca3f9ca94432e (patch) | |
tree | 446c28b34d731d57a0cc5adf34affa447bb879e5 /source/python/py_spoolss.c | |
parent | 0420ae846cc93d4598b16dd21a4b8f61ae270fa2 (diff) | |
download | samba-954107a9d314c8d87f65f741804ca3f9ca94432e.tar.gz samba-954107a9d314c8d87f65f741804ca3f9ca94432e.tar.xz samba-954107a9d314c8d87f65f741804ca3f9ca94432e.zip |
Added startdocprinter and enddocprinter.
Diffstat (limited to 'source/python/py_spoolss.c')
-rw-r--r-- | source/python/py_spoolss.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source/python/py_spoolss.c b/source/python/py_spoolss.c index 323b3c3b6fe..a8372fd2134 100644 --- a/source/python/py_spoolss.c +++ b/source/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 } }; |