ホーム › Networking.Clustering › CLUSTER_ROLE_STATE
CLUSTER_ROLE_STATE
列挙型メンバー 3
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| ClusterRoleUnknown | -1 | 0xFFFFFFFF | そのロールがクラスター化されているかどうかは不明です。 |
| ClusterRoleClustered | 0 | 0x0 | そのロールはクラスター化されています。 |
| ClusterRoleUnclustered | 1 | 0x1 | そのロールはクラスター化されていません。 |
公式ドキュメント
ResUtilGetClusterRoleState 関数が返す可能性のある値を定義します。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum CLUSTER_ROLE_STATE : int {
ClusterRoleUnknown = -1,
ClusterRoleClustered = 0,
ClusterRoleUnclustered = 1
} CLUSTER_ROLE_STATE;public enum CLUSTER_ROLE_STATE : int
{
ClusterRoleUnknown = -1,
ClusterRoleClustered = 0,
ClusterRoleUnclustered = 1,
}Public Enum CLUSTER_ROLE_STATE As Integer
ClusterRoleUnknown = -1
ClusterRoleClustered = 0
ClusterRoleUnclustered = 1
End Enumimport enum
class CLUSTER_ROLE_STATE(enum.IntEnum):
ClusterRoleUnknown = -1
ClusterRoleClustered = 0
ClusterRoleUnclustered = 1// CLUSTER_ROLE_STATE
pub const ClusterRoleUnknown: i32 = -1;
pub const ClusterRoleClustered: i32 = 0;
pub const ClusterRoleUnclustered: i32 = 1;// CLUSTER_ROLE_STATE
const (
ClusterRoleUnknown int32 = -1
ClusterRoleClustered int32 = 0
ClusterRoleUnclustered int32 = 1
)const
ClusterRoleUnknown = -1;
ClusterRoleClustered = 0;
ClusterRoleUnclustered = 1;// CLUSTER_ROLE_STATE
pub const ClusterRoleUnknown: i32 = -1;
pub const ClusterRoleClustered: i32 = 0;
pub const ClusterRoleUnclustered: i32 = 1;const
ClusterRoleUnknown* = -1
ClusterRoleClustered* = 0
ClusterRoleUnclustered* = 1enum CLUSTER_ROLE_STATE : int {
ClusterRoleUnknown = -1,
ClusterRoleClustered = 0,
ClusterRoleUnclustered = 1,
}#define global ClusterRoleUnknown 0xFFFFFFFF
#define global ClusterRoleClustered 0x0
#define global ClusterRoleUnclustered 0x1