diff options
author | Günther Deschner <gd@samba.org> | 2009-03-07 22:22:42 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-03-13 09:25:20 +0100 |
commit | 80284124ba6eca1ef70216dc9b4b3e4276208300 (patch) | |
tree | 5505b3153ca735fa4096af4a52dfc50d6bdc69fa /source3/include/proto.h | |
parent | 427987d2bfae5bd0a259f87ff00e0d1f0a6e8802 (diff) | |
download | samba-80284124ba6eca1ef70216dc9b4b3e4276208300.tar.gz samba-80284124ba6eca1ef70216dc9b4b3e4276208300.tar.bz2 samba-80284124ba6eca1ef70216dc9b4b3e4276208300.zip |
s3-spoolss: add rpccli_spoolss_enumjobs convenience wrapper.
Guenther
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r-- | source3/include/proto.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 40024c5194..eba3c14e71 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -5506,6 +5506,15 @@ WERROR rpccli_spoolss_enummonitors(struct rpc_pipe_client *cli, uint32_t offered, uint32_t *count, union spoolss_MonitorInfo **info); +WERROR rpccli_spoolss_enumjobs(struct rpc_pipe_client *cli, + TALLOC_CTX *mem_ctx, + struct policy_handle *handle, + uint32_t firstjob, + uint32_t numjobs, + uint32_t level, + uint32_t offered, + uint32_t *count, + union spoolss_JobInfo **info); WERROR rpccli_spoolss_enum_printers(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, char *name, uint32 flags, uint32 level, uint32 *num_printers, PRINTER_INFO_CTR *ctr); |