summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-09-09 13:40:18 +0200
committerGünther Deschner <gd@samba.org>2008-09-11 14:30:27 +0200
commite17da26aa0aacc5b0813cfd8fc1ef00094d2d7ac (patch)
tree4a80ac7d3a4862df03672de866b074279e92b51f /source3
parenta5bf77be8658106542995e879833cff2857d5f0d (diff)
downloadsamba-e17da26aa0aacc5b0813cfd8fc1ef00094d2d7ac.tar.gz
samba-e17da26aa0aacc5b0813cfd8fc1ef00094d2d7ac.tar.bz2
samba-e17da26aa0aacc5b0813cfd8fc1ef00094d2d7ac.zip
netapi: add NetUserGetLocalGroups to IDL.
Guenther (This used to be commit 4f13450c6a27a329131a6027fc31fd627f2e61fa)
Diffstat (limited to 'source3')
-rw-r--r--source3/librpc/idl/libnetapi.idl21
1 files changed, 21 insertions, 0 deletions
diff --git a/source3/librpc/idl/libnetapi.idl b/source3/librpc/idl/libnetapi.idl
index e21dd0cc2b..1ab8c5ff21 100644
--- a/source3/librpc/idl/libnetapi.idl
+++ b/source3/librpc/idl/libnetapi.idl
@@ -627,6 +627,27 @@ interface libnetapi
);
/*******************************************/
+ /* 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 */
/*******************************************/