summaryrefslogtreecommitdiff
path: root/librpc
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2016-05-04 00:40:10 +0200
committerJeremy Allison <jra@samba.org>2016-09-07 23:56:16 +0200
commit8142b38c02a73e2f873d5172394dbe93c0783a52 (patch)
tree11f407d649ddc28078d3df003812d55ed0dcfaf5 /librpc
parent8ce0aaef505ddfc3df87ce159c38773becfa42e1 (diff)
downloadsamba-8142b38c02a73e2f873d5172394dbe93c0783a52.tar.gz
librpc: add ClusterResTypeEnumType 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 4988a38646c..f4448d61cb6 100644
--- a/librpc/idl/clusapi.idl
+++ b/librpc/idl/clusapi.idl
@@ -1565,10 +1565,15 @@ import "winreg.idl", "misc.idl";
/*****************/
/* Function 0x67 */
+ typedef [bitmap32bit] bitmap {
+ CLUSTER_RESOURCE_TYPE_ENUM_NODES = 0x00000001,
+ CLUSTER_RESOURCE_TYPE_ENUM_RESOURCES = 0x00000002
+ } ClusterResTypeEnumType;
+
WERROR
clusapi_CreateResTypeEnum(
[ in, string ] [charset(UTF16)] uint16 *lpszTypeName,
- [ in ] uint32 dwType,
+ [ in ] ClusterResTypeEnumType dwType,
[ out ] ENUM_LIST **ReturnEnum,
[ out ] WERROR *rpc_status
);