summaryrefslogtreecommitdiff
path: root/librpc
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2016-05-03 12:58:07 +0200
committerJeremy Allison <jra@samba.org>2016-09-07 23:56:15 +0200
commit6fe2a2bb9d6786e4977aad2b0ae75c48f05f3ea5 (patch)
tree1d6904635dd048c2b413b825b167663ac7c6f3de /librpc
parent6ee7617207a1fef04245be86ba14ebcb65982181 (diff)
downloadsamba-6fe2a2bb9d6786e4977aad2b0ae75c48f05f3ea5.tar.gz
librpc: add ClusterGroupEnumType enum to IDL.
Guenther Signed-off-by: Guenther Deschner <gd@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'librpc')
-rw-r--r--librpc/idl/clusapi.idl7
1 files changed, 6 insertions, 1 deletions
diff --git a/librpc/idl/clusapi.idl b/librpc/idl/clusapi.idl
index 38552c47900..c172aaa2f3a 100644
--- a/librpc/idl/clusapi.idl
+++ b/librpc/idl/clusapi.idl
@@ -791,10 +791,15 @@ import "winreg.idl", "misc.idl";
/*****************/
/* Function 0x35 */
+ typedef [bitmap32bit] bitmap {
+ CLUSTER_GROUP_ENUM_CONTAINS = 0x00000001,
+ CLUSTER_GROUP_ENUM_NODES = 0x00000002
+ } ClusterGroupEnumType;
+
WERROR
clusapi_CreateGroupResourceEnum(
[ in ] HGROUP_RPC hGroup,
- [ in ] uint32 dwType,
+ [ in ] ClusterGroupEnumType dwType,
[ out ] ENUM_LIST **ReturnEnum,
[ out ] WERROR *rpc_status
);