]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
re-run make idl.
authorGünther Deschner <gd@samba.org>
Mon, 2 Jun 2008 17:17:53 +0000 (19:17 +0200)
committerGünther Deschner <gd@samba.org>
Mon, 2 Jun 2008 23:27:47 +0000 (01:27 +0200)
Guenther

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

index 82df9f9a9f9fdf37344aadb6327e2519ad6fbb1c..998d9af355d10b38059bd1bb2dd440ba1b75f02e 100644 (file)
@@ -433,4 +433,17 @@ struct NetLocalGroupAdd {
 
 };
 
+
+struct NetLocalGroupDel {
+       struct {
+               const char * server_name;
+               const char * group_name;
+       } in;
+
+       struct {
+               enum NET_API_STATUS result;
+       } out;
+
+};
+
 #endif /* _HEADER_libnetapi */
index d1a58bbf9d81cfd48a6910e737a45498e3b5a2a1..4d7f6d8917ed7f7a6d2fbb6b405e36d766ae44d2 100644 (file)
@@ -1137,3 +1137,26 @@ _PUBLIC_ void ndr_print_NetLocalGroupAdd(struct ndr_print *ndr, const char *name
        ndr->depth--;
 }
 
+_PUBLIC_ void ndr_print_NetLocalGroupDel(struct ndr_print *ndr, const char *name, int flags, const struct NetLocalGroupDel *r)
+{
+       ndr_print_struct(ndr, name, "NetLocalGroupDel");
+       ndr->depth++;
+       if (flags & NDR_SET_VALUES) {
+               ndr->flags |= LIBNDR_PRINT_SET_VALUES;
+       }
+       if (flags & NDR_IN) {
+               ndr_print_struct(ndr, "in", "NetLocalGroupDel");
+               ndr->depth++;
+               ndr_print_string(ndr, "server_name", r->in.server_name);
+               ndr_print_string(ndr, "group_name", r->in.group_name);
+               ndr->depth--;
+       }
+       if (flags & NDR_OUT) {
+               ndr_print_struct(ndr, "out", "NetLocalGroupDel");
+               ndr->depth++;
+               ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
+               ndr->depth--;
+       }
+       ndr->depth--;
+}
+
index fb93bc2f7d0127d60d033d5d23ec434706917bac..7acd255a5383d6ff3b2880cf7c0277f544c7e540 100644 (file)
@@ -46,7 +46,9 @@
 
 #define NDR_NETLOCALGROUPADD (0x13)
 
-#define NDR_LIBNETAPI_CALL_COUNT (20)
+#define NDR_NETLOCALGROUPDEL (0x14)
+
+#define NDR_LIBNETAPI_CALL_COUNT (21)
 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);
@@ -134,4 +136,7 @@ void ndr_print_NetGroupDelUser(struct ndr_print *ndr, const char *name, int flag
 enum ndr_err_code ndr_push_NetLocalGroupAdd(struct ndr_push *ndr, int flags, const struct NetLocalGroupAdd *r);
 enum ndr_err_code ndr_pull_NetLocalGroupAdd(struct ndr_pull *ndr, int flags, struct NetLocalGroupAdd *r);
 void ndr_print_NetLocalGroupAdd(struct ndr_print *ndr, const char *name, int flags, const struct NetLocalGroupAdd *r);
+enum ndr_err_code ndr_push_NetLocalGroupDel(struct ndr_push *ndr, int flags, const struct NetLocalGroupDel *r);
+enum ndr_err_code ndr_pull_NetLocalGroupDel(struct ndr_pull *ndr, int flags, struct NetLocalGroupDel *r);
+void ndr_print_NetLocalGroupDel(struct ndr_print *ndr, const char *name, int flags, const struct NetLocalGroupDel *r);
 #endif /* _HEADER_NDR_libnetapi */