diff options
author | Günther Deschner <gd@samba.org> | 2010-04-30 11:55:18 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-04-30 13:44:40 +0200 |
commit | 1cdb1a9df61274adaee90a32a7376635c29fc689 (patch) | |
tree | a6e50d41f5bc3750702653fa8c6048ef64be4145 /librpc | |
parent | 0f57a3991644d69f22ef7303aad03343bdf1ab3c (diff) | |
download | samba-1cdb1a9df61274adaee90a32a7376635c29fc689.tar.gz samba-1cdb1a9df61274adaee90a32a7376635c29fc689.tar.bz2 samba-1cdb1a9df61274adaee90a32a7376635c29fc689.zip |
rap: add IDL for rap_NetPrintQueue{Pause,Continue,Purge}.
it seems like they are not documented (at least not in MS-RAP).
Guenther
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/rap.idl | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/librpc/idl/rap.idl b/librpc/idl/rap.idl index edc0b4fbca..52cd192881 100644 --- a/librpc/idl/rap.idl +++ b/librpc/idl/rap.idl @@ -584,6 +584,27 @@ interface rap [out] uint16 convert ); + /* not documented in MS-RAP */ + [public] void rap_NetPrintQueuePause( + [in] astring PrintQueueName, + [out] uint16 status, + [out] uint16 convert + ); + + /* not documented in MS-RAP */ + [public] void rap_NetPrintQueueResume( + [in] astring PrintQueueName, + [out] uint16 status, + [out] uint16 convert + ); + + /* not documented in MS-RAP */ + [public] void rap_NetPrintQueuePurge( + [in] astring PrintQueueName, + [out] uint16 status, + [out] uint16 convert + ); + /* Parameter description strings for RAP calls */ /* Names are defined name for RAP call with _REQ */ /* appended to end. */ |