Win32 API 日本語リファレンス
ホームNetworking.Clustering › CLUSTER_GROUP_AUTOFAILBACK_TYPE

CLUSTER_GROUP_AUTOFAILBACK_TYPE

列挙型
基底型i4

メンバー 3

名前10進16進
ClusterGroupPreventFailback00x0
ClusterGroupAllowFailback10x1
ClusterGroupFailbackTypeCount20x2

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum CLUSTER_GROUP_AUTOFAILBACK_TYPE : int {
    ClusterGroupPreventFailback = 0,
    ClusterGroupAllowFailback = 1,
    ClusterGroupFailbackTypeCount = 2
} CLUSTER_GROUP_AUTOFAILBACK_TYPE;
public enum CLUSTER_GROUP_AUTOFAILBACK_TYPE : int
{
    ClusterGroupPreventFailback = 0,
    ClusterGroupAllowFailback = 1,
    ClusterGroupFailbackTypeCount = 2,
}
Public Enum CLUSTER_GROUP_AUTOFAILBACK_TYPE As Integer
    ClusterGroupPreventFailback = 0
    ClusterGroupAllowFailback = 1
    ClusterGroupFailbackTypeCount = 2
End Enum
import enum

class CLUSTER_GROUP_AUTOFAILBACK_TYPE(enum.IntEnum):
    ClusterGroupPreventFailback = 0
    ClusterGroupAllowFailback = 1
    ClusterGroupFailbackTypeCount = 2
// CLUSTER_GROUP_AUTOFAILBACK_TYPE
pub const ClusterGroupPreventFailback: i32 = 0;
pub const ClusterGroupAllowFailback: i32 = 1;
pub const ClusterGroupFailbackTypeCount: i32 = 2;
// CLUSTER_GROUP_AUTOFAILBACK_TYPE
const (
	ClusterGroupPreventFailback int32 = 0
	ClusterGroupAllowFailback int32 = 1
	ClusterGroupFailbackTypeCount int32 = 2
)
const
  ClusterGroupPreventFailback = 0;
  ClusterGroupAllowFailback = 1;
  ClusterGroupFailbackTypeCount = 2;
// CLUSTER_GROUP_AUTOFAILBACK_TYPE
pub const ClusterGroupPreventFailback: i32 = 0;
pub const ClusterGroupAllowFailback: i32 = 1;
pub const ClusterGroupFailbackTypeCount: i32 = 2;
const
  ClusterGroupPreventFailback* = 0
  ClusterGroupAllowFailback* = 1
  ClusterGroupFailbackTypeCount* = 2
enum CLUSTER_GROUP_AUTOFAILBACK_TYPE : int {
    ClusterGroupPreventFailback = 0,
    ClusterGroupAllowFailback = 1,
    ClusterGroupFailbackTypeCount = 2,
}
#define global ClusterGroupPreventFailback   0x0
#define global ClusterGroupAllowFailback     0x1
#define global ClusterGroupFailbackTypeCount 0x2