summaryrefslogtreecommitdiff
path: root/source4/libnet/groupman.h
diff options
context:
space:
mode:
authorRafal Szczesniak <mimir@samba.org>2008-01-08 10:20:44 -0600
committerStefan Metzmacher <metze@samba.org>2008-01-08 04:27:01 -0600
commitd6b91ac202f81fc1a5293f630515e30ed921efeb (patch)
tree8de39c0252bfa18cec4a49af611975bf15a746c8 /source4/libnet/groupman.h
parent83a7d865e41e56ee7ad6c732f743df51a418168e (diff)
downloadsamba-d6b91ac202f81fc1a5293f630515e30ed921efeb.tar.gz
samba-d6b91ac202f81fc1a5293f630515e30ed921efeb.tar.bz2
samba-d6b91ac202f81fc1a5293f630515e30ed921efeb.zip
r26693: Add (untested) libnet_rpc_groupdel function.
rafal (This used to be commit e940b1020a3c2e7ee43198dc40c47cbdbef0d950)
Diffstat (limited to 'source4/libnet/groupman.h')
-rw-r--r--source4/libnet/groupman.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/source4/libnet/groupman.h b/source4/libnet/groupman.h
index 0acb02de5a..cd4452e73c 100644
--- a/source4/libnet/groupman.h
+++ b/source4/libnet/groupman.h
@@ -33,3 +33,14 @@ struct libnet_rpc_groupadd {
struct policy_handle group_handle;
} out;
};
+
+
+struct libnet_rpc_groupdel {
+ struct {
+ struct policy_handle domain_handle;
+ const char *groupname;
+ } in;
+ struct {
+ struct policy_handle group_handle;
+ } out;
+};