summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-06-02 17:31:38 +0200
committerGünther Deschner <gd@samba.org>2008-06-03 01:27:45 +0200
commitbe9332df6f2600b54da0c02baf4efdfee3932a79 (patch)
tree509964718db85bf69c42cd7e2b8d6ace6185443c
parent2997e2868cbff93e6ff3b1f59a8997871c946ca1 (diff)
downloadsamba-be9332df6f2600b54da0c02baf4efdfee3932a79.tar.gz
samba-be9332df6f2600b54da0c02baf4efdfee3932a79.tar.bz2
samba-be9332df6f2600b54da0c02baf4efdfee3932a79.zip
netapi: add NetLocalGroupAdd() to IDL.
Guenther (This used to be commit fa86b2cf5c6f5654fc7545de467c47626573f97c)
-rw-r--r--source3/librpc/idl/libnetapi.idl20
1 files changed, 20 insertions, 0 deletions
diff --git a/source3/librpc/idl/libnetapi.idl b/source3/librpc/idl/libnetapi.idl
index 1d62ecb564..200beee28d 100644
--- a/source3/librpc/idl/libnetapi.idl
+++ b/source3/librpc/idl/libnetapi.idl
@@ -248,4 +248,24 @@ interface libnetapi
[in] string group_name,
[in] string user_name
);
+
+ typedef struct {
+ string lgrpi0_name;
+ } LOCALGROUP_INFO_0;
+
+ typedef struct {
+ string lgrpi1_name;
+ string lgrpi1_comment;
+ } LOCALGROUP_INFO_1;
+
+ typedef struct {
+ string lgrpi1002_comment;
+ } LOCALGROUP_INFO_1002;
+
+ [nopush,nopull] NET_API_STATUS NetLocalGroupAdd(
+ [in] string server_name,
+ [in] uint32 level,
+ [in] uint8 *buf,
+ [out,ref] uint32 *parm_err
+ );
}