diff options
author | Günther Deschner <gd@samba.org> | 2008-10-30 16:34:28 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-10-31 02:44:33 +0100 |
commit | 07f1bb3abce00fc20e78e7be9d7ad2d5346b681b (patch) | |
tree | 9ac0459d3b28b21d9659b0556793cc1b7b051888 /source4/librpc/idl | |
parent | 439f197a68e794a95e29f8c37b7d960bd7da420e (diff) | |
download | samba-07f1bb3abce00fc20e78e7be9d7ad2d5346b681b.tar.gz samba-07f1bb3abce00fc20e78e7be9d7ad2d5346b681b.tar.bz2 samba-07f1bb3abce00fc20e78e7be9d7ad2d5346b681b.zip |
s4-srvsvc: merge srvsvc_NetCharDevEnum from s3 idl.
Guenther
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/srvsvc.idl | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/source4/librpc/idl/srvsvc.idl b/source4/librpc/idl/srvsvc.idl index 755339ecfe..43f2004c23 100644 --- a/source4/librpc/idl/srvsvc.idl +++ b/source4/librpc/idl/srvsvc.idl @@ -51,14 +51,18 @@ import "security.idl", "svcctl.idl"; [default] ; } srvsvc_NetCharDevCtr; + typedef struct { + uint32 level; + [switch_is(level)] srvsvc_NetCharDevCtr ctr; + } srvsvc_NetCharDevInfoCtr; + /******************/ /* Function: 0x00 */ WERROR srvsvc_NetCharDevEnum( [in,unique] [string,charset(UTF16)] uint16 *server_unc, - [in,out] uint32 level, - [in,out,switch_is(level)] srvsvc_NetCharDevCtr ctr, + [in,out,ref] srvsvc_NetCharDevInfoCtr *info_ctr, [in] uint32 max_buffer, - [out] uint32 totalentries, + [out,ref] uint32 *totalentries, [in,out,unique] uint32 *resume_handle ); @@ -684,6 +688,7 @@ import "security.idl", "svcctl.idl"; uint32 sessreqs; uint32 opensearch; uint32 activelocks; + uint32 numreqbufs; uint32 sizereqbufs; uint32 numbigbufs; uint32 numfiletasks; @@ -717,6 +722,7 @@ import "security.idl", "svcctl.idl"; uint32 sessreqs; uint32 opensearch; uint32 activelocks; + uint32 numreqbufs; uint32 sizereqbufs; uint32 numbigbufs; uint32 numfiletasks; |