From: Günther Deschner Date: Tue, 3 May 2016 15:18:40 +0000 (+0200) Subject: librpc: add CLUS_RESOURCE_CLASS_INFO to IDL X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=de11f1b32b0ed75a3227ef3a10d744224dec06dd;p=metze%2Fsamba%2Fwip.git librpc: add CLUS_RESOURCE_CLASS_INFO to IDL Guenther Signed-off-by: Guenther Deschner Reviewed-by: Jeremy Allison --- diff --git a/librpc/idl/clusapi.idl b/librpc/idl/clusapi.idl index c172aaa2f3af..4988a38646c1 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,