1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

librpc: add clusapi_ClusterGroupState enum to IDL.

Guenther

Signed-off-by: Günther Deschner <gd@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
Günther Deschner 2015-03-05 11:42:30 +01:00
parent e6fda24125
commit 300c11504e

View File

@ -685,10 +685,19 @@ import "security.idl";
/*****************/
/* Function 0x2D */
typedef [v1_enum] enum {
ClusterGroupOnline = 0x00000000,
ClusterGroupOffline = 0x00000001,
ClusterGroupFailed = 0x00000002,
ClusterGroupPartialOnline = 0x00000003,
ClusterGroupPending = 0x00000004,
ClusterGroupStateUnknown = 0xFFFFFFFF
} clusapi_ClusterGroupState;
WERROR
clusapi_GetGroupState(
[ in ] HGROUP_RPC hGroup,
[ out ] uint32 *State,
[ out ] clusapi_ClusterGroupState *State,
[ out, string ] [charset(UTF16)] uint16 **NodeName,
[ out ] WERROR *rpc_status
);