diff options
author | Günther Deschner <gd@samba.org> | 2009-02-10 00:21:53 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-02-10 11:26:39 +0100 |
commit | 0fc13e7e2cb95f4e8a94b6fc91c72ee59b2963d6 (patch) | |
tree | b67bd4a21c2dc594e919369f822b85c5dfbfcea2 /source3/rpc_parse | |
parent | e4b5e67566da767b423c8412601f46d3f95ff34c (diff) | |
download | samba-0fc13e7e2cb95f4e8a94b6fc91c72ee59b2963d6.tar.gz samba-0fc13e7e2cb95f4e8a94b6fc91c72ee59b2963d6.tar.bz2 samba-0fc13e7e2cb95f4e8a94b6fc91c72ee59b2963d6.zip |
s3-spoolss: remove old spoolss_SetJob.
Guenther
Diffstat (limited to 'source3/rpc_parse')
-rw-r--r-- | source3/rpc_parse/parse_spoolss.c | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/source3/rpc_parse/parse_spoolss.c b/source3/rpc_parse/parse_spoolss.c index 0e3bd5753c..5f125b8b8e 100644 --- a/source3/rpc_parse/parse_spoolss.c +++ b/source3/rpc_parse/parse_spoolss.c @@ -3388,50 +3388,6 @@ bool spoolss_io_q_enumjobs(const char *desc, SPOOL_Q_ENUMJOBS *q_u, prs_struct * } /******************************************************************* -********************************************************************/ - -bool spoolss_io_r_setjob(const char *desc, SPOOL_R_SETJOB *r_u, prs_struct *ps, int depth) -{ - prs_debug(ps, depth, desc, "spoolss_io_r_setjob"); - depth++; - - if(!prs_align(ps)) - return False; - - if(!prs_werror("status", ps, depth, &r_u->status)) - return False; - - return True; -} - -/******************************************************************* -********************************************************************/ - -bool spoolss_io_q_setjob(const char *desc, SPOOL_Q_SETJOB *q_u, prs_struct *ps, int depth) -{ - prs_debug(ps, depth, desc, "spoolss_io_q_setjob"); - depth++; - - if(!prs_align(ps)) - return False; - - if(!smb_io_pol_hnd("printer handle",&q_u->handle,ps,depth)) - return False; - if(!prs_uint32("jobid", ps, depth, &q_u->jobid)) - return False; - /* - * level is usually 0. If (level!=0) then I'm in trouble ! - * I will try to generate setjob command with level!=0, one day. - */ - if(!prs_uint32("level", ps, depth, &q_u->level)) - return False; - if(!prs_uint32("command", ps, depth, &q_u->command)) - return False; - - return True; -} - -/******************************************************************* Parse a SPOOL_R_ENUMPRINTERDRIVERS structure. ********************************************************************/ @@ -6050,25 +6006,6 @@ bool make_spoolss_q_enumforms(SPOOL_Q_ENUMFORMS *q_u, POLICY_HND *handle, * init a structure. ********************************************************************/ -bool make_spoolss_q_setjob(SPOOL_Q_SETJOB *q_u, POLICY_HND *handle, - uint32 jobid, uint32 level, uint32 command) -{ - memcpy(&q_u->handle, handle, sizeof(POLICY_HND)); - q_u->jobid = jobid; - q_u->level = level; - - /* Hmm - the SPOOL_Q_SETJOB structure has a JOB_INFO ctr in it but - the server side code has it marked as unused. */ - - q_u->command = command; - - return True; -} - -/******************************************************************* - * init a structure. - ********************************************************************/ - bool make_spoolss_q_getjob(SPOOL_Q_GETJOB *q_u, POLICY_HND *handle, uint32 jobid, uint32 level, RPC_BUFFER *buffer, uint32 offered) |