1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-12 20:58:37 +03:00

netapi: add NetGroupGetUsers to IDL.

Guenther
(This used to be commit 81be6207e51924a7632dfc0ec16ca3e570d417aa)
This commit is contained in:
Günther Deschner 2008-07-18 23:37:31 +02:00
parent d1da171600
commit 45b5175102

View File

@ -656,6 +656,30 @@ interface libnetapi
[in] string user_name
);
/*******************************************/
/* 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 */
/*******************************************/