summaryrefslogtreecommitdiff
path: root/librpc/idl/clusapi.idl
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2016-05-03 17:18:40 +0200
committerJeremy Allison <jra@samba.org>2016-09-07 23:56:16 +0200
commitde11f1b32b0ed75a3227ef3a10d744224dec06dd (patch)
treec97841e6b2356b947b6d8408ecb06040b9a61711 /librpc/idl/clusapi.idl
parent058032c58b5c0d76bb2d491c862f123d76afd5c9 (diff)
downloadsamba-de11f1b32b0ed75a3227ef3a10d744224dec06dd.tar.gz
librpc: add CLUS_RESOURCE_CLASS_INFO to IDL
Guenther Signed-off-by: Guenther Deschner <gd@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'librpc/idl/clusapi.idl')
-rw-r--r--librpc/idl/clusapi.idl11
1 files changed, 11 insertions, 0 deletions
diff --git a/librpc/idl/clusapi.idl b/librpc/idl/clusapi.idl
index c172aaa2f3a..4988a38646c 100644
--- a/librpc/idl/clusapi.idl
+++ b/librpc/idl/clusapi.idl
@@ -1047,6 +1047,17 @@ import "winreg.idl", "misc.idl";
/*****************/
/* Function 0x49 */
+ typedef [v1_enum] enum {
+ CLUS_RESCLASS_UNKNOWN = 0x00000000,
+ CLUS_RESCLASS_STORAGE = 0x00000001,
+ CLUS_RESCLASS_NETWORK = 0x00000002
+ } clusapi_ResourceClass;
+
+ typedef [public] struct {
+ clusapi_ResourceClass Class;
+ uint32 SubClass;
+ } CLUS_RESOURCE_CLASS_INFO;
+
WERROR
clusapi_ResourceControl(
[ in ] HRES_RPC hResource,