netapi: add NetGroupSetInfo to IDL.
authorGünther Deschner <gd@samba.org>
Mon, 2 Jun 2008 10:47:54 +0000 (12:47 +0200)
committerGünther Deschner <gd@samba.org>
Mon, 2 Jun 2008 23:27:42 +0000 (01:27 +0200)
Guenther
(This used to be commit febcbd2127183740a7d536fd26a65c3ed1d0df9e)

source3/librpc/idl/libnetapi.idl

index de3bc7bd5adf5e2154c513994a60ee9373c84d62..4d90aed7cfecde5b4fe1be0848b906c86f50b41f 100644 (file)
@@ -202,6 +202,14 @@ interface libnetapi
                uint32 grpi3_attributes;
        } GROUP_INFO_3;
 
+       typedef struct {
+               string grpi1002_comment;
+       } GROUP_INFO_1002;
+
+       typedef struct {
+               uint32 grpi1005_attributes;
+       } GROUP_INFO_1005;
+
        [nopush,nopull] NET_API_STATUS NetGroupAdd(
                [in] string server_name,
                [in] uint32 level,
@@ -213,4 +221,12 @@ interface libnetapi
                [in] string server_name,
                [in] string group_name
                );
+
+       [nopush,nopull] NET_API_STATUS NetGroupSetInfo(
+               [in] string server_name,
+               [in] string group_name,
+               [in] uint32 level,
+               [in] uint8 *buf,
+               [out] uint32 *parm_err
+               );
 }