From 81be6207e51924a7632dfc0ec16ca3e570d417aa Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnther=20Deschner?= Date: Fri, 18 Jul 2008 23:37:31 +0200 Subject: [PATCH] netapi: add NetGroupGetUsers to IDL. Guenther --- source/librpc/idl/libnetapi.idl | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/source/librpc/idl/libnetapi.idl b/source/librpc/idl/libnetapi.idl index b92d8d2e803..30dccebd015 100644 --- a/source/librpc/idl/libnetapi.idl +++ b/source/librpc/idl/libnetapi.idl @@ -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 */ /*******************************************/ -- 2.47.3