diff options
author | Günther Deschner <gd@samba.org> | 2008-08-27 11:47:39 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-08-29 13:57:58 +0200 |
commit | c5b924b4e77ad749ae0c7ad5090f8c37a52a1100 (patch) | |
tree | 757667a52a4eb8fdddc69c10cc842a3ca668d1d4 | |
parent | e2945c38f1977c00b194b50b562d4bb9edaf4e62 (diff) | |
download | samba-c5b924b4e77ad749ae0c7ad5090f8c37a52a1100.tar.gz samba-c5b924b4e77ad749ae0c7ad5090f8c37a52a1100.tar.bz2 samba-c5b924b4e77ad749ae0c7ad5090f8c37a52a1100.zip |
netapi: add NetUserGetGroups to IDL.
Guenther
(This used to be commit 4d15d1ff20dee216b2fc064bc19712bd3a9cec70)
-rw-r--r-- | source3/librpc/idl/libnetapi.idl | 32 |
1 files changed, 23 insertions, 9 deletions
diff --git a/source3/librpc/idl/libnetapi.idl b/source3/librpc/idl/libnetapi.idl index 71bbccb8fd..b9d94edf9a 100644 --- a/source3/librpc/idl/libnetapi.idl +++ b/source3/librpc/idl/libnetapi.idl @@ -513,6 +513,29 @@ interface libnetapi ); /*******************************************/ + /* NetUserGetGroups */ + /*******************************************/ + + [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 NetUserGetGroups( + [in] string server_name, + [in] string user_name, + [in] uint32 level, + [out] uint8 **buffer, + [in] uint32 prefmaxlen, + [out,ref] uint32 *entries_read, + [out,ref] uint32 *total_entries + ); + + /*******************************************/ /* NetUserModalsGet */ /*******************************************/ @@ -738,15 +761,6 @@ 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, |