re-run make idl.
authorGünther Deschner <gd@samba.org>
Thu, 4 Sep 2008 18:01:46 +0000 (20:01 +0200)
committerGünther Deschner <gd@samba.org>
Fri, 5 Sep 2008 11:22:07 +0000 (13:22 +0200)
Guenther
(This used to be commit 7d863c4b00d70110819b847890ccb9b2a4aa71c9)

source3/librpc/gen_ndr/libnetapi.h
source3/librpc/gen_ndr/ndr_libnetapi.c
source3/librpc/gen_ndr/ndr_libnetapi.h

index 1e3d51a58b5fbdfbabcf62af76d33380333373b9..f12c076781c38e8104398f3d83a70983a1092961 100644 (file)
@@ -1308,4 +1308,20 @@ struct NetShareGetInfo {
 
 };
 
+
+struct NetShareSetInfo {
+       struct {
+               const char * server_name;
+               const char * net_name;
+               uint32_t level;
+               uint8_t *buffer;/* [ref] */
+       } in;
+
+       struct {
+               uint32_t *parm_err;/* [ref] */
+               enum NET_API_STATUS result;
+       } out;
+
+};
+
 #endif /* _HEADER_libnetapi */
index f2f7bd330006028021c979de26a5bbc0311c99a0..3530a0877e61803b63af6bd5cb3321d23f15e0a9 100644 (file)
@@ -3704,3 +3704,35 @@ _PUBLIC_ void ndr_print_NetShareGetInfo(struct ndr_print *ndr, const char *name,
        ndr->depth--;
 }
 
+_PUBLIC_ void ndr_print_NetShareSetInfo(struct ndr_print *ndr, const char *name, int flags, const struct NetShareSetInfo *r)
+{
+       ndr_print_struct(ndr, name, "NetShareSetInfo");
+       ndr->depth++;
+       if (flags & NDR_SET_VALUES) {
+               ndr->flags |= LIBNDR_PRINT_SET_VALUES;
+       }
+       if (flags & NDR_IN) {
+               ndr_print_struct(ndr, "in", "NetShareSetInfo");
+               ndr->depth++;
+               ndr_print_string(ndr, "server_name", r->in.server_name);
+               ndr_print_string(ndr, "net_name", r->in.net_name);
+               ndr_print_uint32(ndr, "level", r->in.level);
+               ndr_print_ptr(ndr, "buffer", r->in.buffer);
+               ndr->depth++;
+               ndr_print_uint8(ndr, "buffer", *r->in.buffer);
+               ndr->depth--;
+               ndr->depth--;
+       }
+       if (flags & NDR_OUT) {
+               ndr_print_struct(ndr, "out", "NetShareSetInfo");
+               ndr->depth++;
+               ndr_print_ptr(ndr, "parm_err", r->out.parm_err);
+               ndr->depth++;
+               ndr_print_uint32(ndr, "parm_err", *r->out.parm_err);
+               ndr->depth--;
+               ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
+               ndr->depth--;
+       }
+       ndr->depth--;
+}
+
index 86b284157a66550e2d7d8b1d9ccfebe76a91ffec..faebff6515ff60f9458fde414fad664c639d6c0f 100644 (file)
@@ -90,7 +90,9 @@
 
 #define NDR_NETSHAREGETINFO (0x29)
 
-#define NDR_LIBNETAPI_CALL_COUNT (42)
+#define NDR_NETSHARESETINFO (0x2a)
+
+#define NDR_LIBNETAPI_CALL_COUNT (43)
 enum ndr_err_code ndr_push_NET_API_STATUS(struct ndr_push *ndr, int ndr_flags, enum NET_API_STATUS r);
 enum ndr_err_code ndr_pull_NET_API_STATUS(struct ndr_pull *ndr, int ndr_flags, enum NET_API_STATUS *r);
 void ndr_print_NET_API_STATUS(struct ndr_print *ndr, const char *name, enum NET_API_STATUS r);
@@ -352,4 +354,7 @@ void ndr_print_NetShareEnum(struct ndr_print *ndr, const char *name, int flags,
 enum ndr_err_code ndr_push_NetShareGetInfo(struct ndr_push *ndr, int flags, const struct NetShareGetInfo *r);
 enum ndr_err_code ndr_pull_NetShareGetInfo(struct ndr_pull *ndr, int flags, struct NetShareGetInfo *r);
 void ndr_print_NetShareGetInfo(struct ndr_print *ndr, const char *name, int flags, const struct NetShareGetInfo *r);
+enum ndr_err_code ndr_push_NetShareSetInfo(struct ndr_push *ndr, int flags, const struct NetShareSetInfo *r);
+enum ndr_err_code ndr_pull_NetShareSetInfo(struct ndr_pull *ndr, int flags, struct NetShareSetInfo *r);
+void ndr_print_NetShareSetInfo(struct ndr_print *ndr, const char *name, int flags, const struct NetShareSetInfo *r);
 #endif /* _HEADER_NDR_libnetapi */