diff options
author | Günther Deschner <gd@samba.org> | 2008-06-02 12:47:54 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-06-03 01:27:42 +0200 |
commit | 0eca06b724ed880c01c73014a35bd9c718372436 (patch) | |
tree | 93d9695f6502c9df01104e42841458cdaf0791c3 | |
parent | 903c418b5aac90bc2c2375895e8191ecf51bc0d7 (diff) | |
download | samba-0eca06b724ed880c01c73014a35bd9c718372436.tar.gz samba-0eca06b724ed880c01c73014a35bd9c718372436.tar.bz2 samba-0eca06b724ed880c01c73014a35bd9c718372436.zip |
netapi: add NetGroupSetInfo to IDL.
Guenther
(This used to be commit febcbd2127183740a7d536fd26a65c3ed1d0df9e)
-rw-r--r-- | source3/librpc/idl/libnetapi.idl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/source3/librpc/idl/libnetapi.idl b/source3/librpc/idl/libnetapi.idl index de3bc7bd5a..4d90aed7cf 100644 --- a/source3/librpc/idl/libnetapi.idl +++ b/source3/librpc/idl/libnetapi.idl @@ -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 + ); } |