summaryrefslogtreecommitdiff
path: root/source4/librpc
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-10-30 16:49:21 +0100
committerGünther Deschner <gd@samba.org>2008-10-31 02:44:33 +0100
commitd1340df8b80c4dbe9f37dffa315a26396ed4f93f (patch)
tree7c90a58ac67de24a831a43223327c9fb96060a3f /source4/librpc
parent07f1bb3abce00fc20e78e7be9d7ad2d5346b681b (diff)
downloadsamba-d1340df8b80c4dbe9f37dffa315a26396ed4f93f.tar.gz
samba-d1340df8b80c4dbe9f37dffa315a26396ed4f93f.tar.bz2
samba-d1340df8b80c4dbe9f37dffa315a26396ed4f93f.zip
s4-srvsvc: merge srvsvc_NetCharDevQEnum from s3 idl.
Guenther
Diffstat (limited to 'source4/librpc')
-rw-r--r--source4/librpc/idl/srvsvc.idl10
1 files changed, 7 insertions, 3 deletions
diff --git a/source4/librpc/idl/srvsvc.idl b/source4/librpc/idl/srvsvc.idl
index 43f2004c23..e3b1833e92 100644
--- a/source4/librpc/idl/srvsvc.idl
+++ b/source4/librpc/idl/srvsvc.idl
@@ -120,15 +120,19 @@ import "security.idl", "svcctl.idl";
[default] ;
} srvsvc_NetCharDevQCtr;
+ typedef struct {
+ uint32 level;
+ [switch_is(level)] srvsvc_NetCharDevQCtr ctr;
+ } srvsvc_NetCharDevQInfoCtr;
+
/******************/
/* Function: 0x03 */
WERROR srvsvc_NetCharDevQEnum(
[in,unique] [string,charset(UTF16)] uint16 *server_unc,
[in,unique] [string,charset(UTF16)] uint16 *user,
- [in,out] uint32 level,
- [in,out,switch_is(level)] srvsvc_NetCharDevQCtr ctr,
+ [in,out,ref] srvsvc_NetCharDevQInfoCtr *info_ctr,
[in] uint32 max_buffer,
- [out] uint32 totalentries,
+ [out,ref] uint32 *totalentries,
[in,out,unique] uint32 *resume_handle
);