diff options
author | Günther Deschner <gd@samba.org> | 2008-07-18 23:37:31 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-07-30 16:54:50 +0200 |
commit | 45b51751023932aa67f6ecdccb40867b7df9be83 (patch) | |
tree | 815c6beeb9bb9cae910282ed11b2cbb5810d0828 /source3/librpc | |
parent | d1da171600b46a17f5562ce3cc391498acaf0642 (diff) | |
download | samba-45b51751023932aa67f6ecdccb40867b7df9be83.tar.gz samba-45b51751023932aa67f6ecdccb40867b7df9be83.tar.bz2 samba-45b51751023932aa67f6ecdccb40867b7df9be83.zip |
netapi: add NetGroupGetUsers to IDL.
Guenther
(This used to be commit 81be6207e51924a7632dfc0ec16ca3e570d417aa)
Diffstat (limited to 'source3/librpc')
-rw-r--r-- | source3/librpc/idl/libnetapi.idl | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/source3/librpc/idl/libnetapi.idl b/source3/librpc/idl/libnetapi.idl index b92d8d2e80..30dccebd01 100644 --- a/source3/librpc/idl/libnetapi.idl +++ b/source3/librpc/idl/libnetapi.idl @@ -657,6 +657,30 @@ interface libnetapi ); /*******************************************/ + /* NetGroupGetUsers */ + /*******************************************/ + + [public] typedef struct { + string grui0_name; + } GROUP_USERS_INFO_0; + + [public] typedef struct { + string grui1_name; + uint32 grui1_attributes; + } GROUP_USERS_INFO_1; + + [nopush,nopull] NET_API_STATUS NetGroupGetUsers( + [in] string server_name, + [in] string group_name, + [in] uint32 level, + [out] uint8 **buffer, + [in] uint32 prefmaxlen, + [out,ref] uint32 *entries_read, + [out,ref] uint32 *total_entries, + [in,out,ref] uint32 *resume_handle + ); + + /*******************************************/ /* NetLocalGroupAdd */ /*******************************************/ |