diff options
author | Günther Deschner <gd@samba.org> | 2009-02-16 23:34:12 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-02-23 16:26:11 +0100 |
commit | 2234984fd0a745603b3131e330234349fe428742 (patch) | |
tree | 39c0a2f843e44ffd7f31cfe2042682458452fc45 /source3/rpc_client | |
parent | fc703a14928c61031589ac6cce8f2985e5fb87a9 (diff) | |
download | samba-2234984fd0a745603b3131e330234349fe428742.tar.gz samba-2234984fd0a745603b3131e330234349fe428742.tar.bz2 samba-2234984fd0a745603b3131e330234349fe428742.zip |
s3-spoolss: remove old spoolss_RemoteFindFirstPrinterChangeNotifyEx.
Guenther
Diffstat (limited to 'source3/rpc_client')
-rw-r--r-- | source3/rpc_client/cli_spoolss_notify.c | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/source3/rpc_client/cli_spoolss_notify.c b/source3/rpc_client/cli_spoolss_notify.c index df01029a87..41abcd4d0a 100644 --- a/source3/rpc_client/cli_spoolss_notify.c +++ b/source3/rpc_client/cli_spoolss_notify.c @@ -31,35 +31,3 @@ /********************************************************************* *********************************************************************/ - -WERROR rpccli_spoolss_rffpcnex(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, - POLICY_HND *pol, uint32 flags, uint32 options, - const char *localmachine, uint32 printerlocal, - SPOOL_NOTIFY_OPTION *option) -{ - prs_struct qbuf, rbuf; - SPOOL_Q_RFFPCNEX q; - SPOOL_R_RFFPCNEX r; - WERROR result = W_ERROR(ERRgeneral); - - ZERO_STRUCT(q); - ZERO_STRUCT(r); - - /* Initialise input parameters */ - - make_spoolss_q_rffpcnex( - &q, pol, flags, options, localmachine, printerlocal, - option); - - /* Marshall data and send request */ - - CLI_DO_RPC_WERR( cli, mem_ctx, &syntax_spoolss, SPOOLSS_RFFPCNEX, - q, r, - qbuf, rbuf, - spoolss_io_q_rffpcnex, - spoolss_io_r_rffpcnex, - WERR_GENERAL_FAILURE ); - - result = r.status; - return result; -} |