diff options
author | Günther Deschner <gd@samba.org> | 2008-10-30 16:48:26 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-10-31 02:44:28 +0100 |
commit | bb4894d48b4bd917b516e6b424b7942050a879ad (patch) | |
tree | 731cd8d069851564471a97e11119e684e709c836 | |
parent | 7cd5f7331478a5f5ef34931d0adbb9977e0925e3 (diff) | |
download | samba-bb4894d48b4bd917b516e6b424b7942050a879ad.tar.gz samba-bb4894d48b4bd917b516e6b424b7942050a879ad.tar.bz2 samba-bb4894d48b4bd917b516e6b424b7942050a879ad.zip |
s3-srvsvc-idl: fix srvsvc_NetCharDevQEnum.
Guenther
-rw-r--r-- | source3/librpc/idl/srvsvc.idl | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/source3/librpc/idl/srvsvc.idl b/source3/librpc/idl/srvsvc.idl index bdc6d50de3..c60b4a4ce5 100644 --- a/source3/librpc/idl/srvsvc.idl +++ b/source3/librpc/idl/srvsvc.idl @@ -120,13 +120,17 @@ 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,ref] uint32 *level, - [in,out,switch_is(*level),ref] srvsvc_NetCharDevQCtr *ctr, + [in,out,ref] srvsvc_NetCharDevQInfoCtr *info_ctr, [in] uint32 max_buffer, [out,ref] uint32 *totalentries, [in,out,unique] uint32 *resume_handle |