summaryrefslogtreecommitdiff
path: root/source3/librpc/gen_ndr/srvsvc.h
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-03-10 17:35:34 +0100
committerGünther Deschner <gd@samba.org>2008-03-10 18:54:18 +0100
commitf3a1b56cfe3b6ccfde6c3426e9f693a2ffcab7bb (patch)
tree214394974c6e1acc6303b7b14afd12ae34b6da46 /source3/librpc/gen_ndr/srvsvc.h
parentd18e531e9789e246eac7e30fe91ad9f6b6a4853a (diff)
downloadsamba-f3a1b56cfe3b6ccfde6c3426e9f693a2ffcab7bb.tar.gz
samba-f3a1b56cfe3b6ccfde6c3426e9f693a2ffcab7bb.tar.bz2
samba-f3a1b56cfe3b6ccfde6c3426e9f693a2ffcab7bb.zip
Re-run make idl.
Guenther (This used to be commit 0bc389272f7ca3cfbd8f5eeeba116f68eadd4c9f)
Diffstat (limited to 'source3/librpc/gen_ndr/srvsvc.h')
-rw-r--r--source3/librpc/gen_ndr/srvsvc.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/source3/librpc/gen_ndr/srvsvc.h b/source3/librpc/gen_ndr/srvsvc.h
index 6a74904571..f619dba73f 100644
--- a/source3/librpc/gen_ndr/srvsvc.h
+++ b/source3/librpc/gen_ndr/srvsvc.h
@@ -103,6 +103,11 @@ union srvsvc_NetConnCtr {
struct srvsvc_NetConnCtr1 *ctr1;/* [unique,case] */
};
+struct srvsvc_NetConnInfoCtr {
+ uint32_t level;
+ union srvsvc_NetConnCtr ctr;/* [switch_is(level)] */
+};
+
struct srvsvc_NetFileInfo2 {
uint32_t fid;
};
@@ -1156,15 +1161,13 @@ struct srvsvc_NetConnEnum {
const char *server_unc;/* [unique,charset(UTF16)] */
const char *path;/* [unique,charset(UTF16)] */
uint32_t max_buffer;
- uint32_t *level;/* [ref] */
- union srvsvc_NetConnCtr *ctr;/* [ref,switch_is(*level)] */
+ struct srvsvc_NetConnInfoCtr *info_ctr;/* [ref] */
uint32_t *resume_handle;/* [unique] */
} in;
struct {
uint32_t *totalentries;/* [ref] */
- uint32_t *level;/* [ref] */
- union srvsvc_NetConnCtr *ctr;/* [ref,switch_is(*level)] */
+ struct srvsvc_NetConnInfoCtr *info_ctr;/* [ref] */
uint32_t *resume_handle;/* [unique] */
WERROR result;
} out;