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

netapi: add NetUserGetLocalGroups to IDL.

Guenther
(This used to be commit 4f13450c6a27a329131a6027fc31fd627f2e61fa)
This commit is contained in:
Günther Deschner 2008-09-09 13:40:18 +02:00
parent a5bf77be86
commit e17da26aa0

View File

@ -626,6 +626,27 @@ interface libnetapi
[in] uint32 num_entries
);
/*******************************************/
/* NetUserGetLocalGroups */
/*******************************************/
const int LG_INCLUDE_INDIRECT = 0x0001;
typedef struct {
string lgrui0_name;
} LOCALGROUP_USERS_INFO_0;
[nopush,nopull] NET_API_STATUS NetUserGetLocalGroups(
[in] string server_name,
[in] string user_name,
[in] uint32 level,
[in] uint32 flags,
[out] uint8 **buffer,
[in] uint32 prefmaxlen,
[out,ref] uint32 *entries_read,
[out,ref] uint32 *total_entries
);
/*******************************************/
/* NetUserModalsGet */
/*******************************************/