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

CLUSTER_SETUP_PHASE_TYPE

列挙型
基底型i4

メンバー 4

名前10進16進説明
ClusterSetupPhaseStart10x1新しいセットアップフェーズの開始を示します。
ClusterSetupPhaseContinue20x2セットアップフェーズの継続を示します。
ClusterSetupPhaseEnd30x3セットアップフェーズの終了を示します。各セットアップフェーズの終了時に 1 回だけ呼び出されます。
ClusterSetupPhaseReport40x4

公式ドキュメント

クラスターセットアップ処理の進行状況を表します。 ClusterSetupProgressCallback 関数はこの列挙型を使用します。 CLUSTER_SETUP_PHASE 列挙型の値は、クラスターセットアップ処理の現在のフェーズを示します。 CLUSTER_SETUP_PHASE_SEVERITY 列挙型の値は、クラスターセットアップ処理の重大度を表します。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

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

typedef enum CLUSTER_SETUP_PHASE_TYPE : int {
    ClusterSetupPhaseStart = 1,
    ClusterSetupPhaseContinue = 2,
    ClusterSetupPhaseEnd = 3,
    ClusterSetupPhaseReport = 4
} CLUSTER_SETUP_PHASE_TYPE;
public enum CLUSTER_SETUP_PHASE_TYPE : int
{
    ClusterSetupPhaseStart = 1,
    ClusterSetupPhaseContinue = 2,
    ClusterSetupPhaseEnd = 3,
    ClusterSetupPhaseReport = 4,
}
Public Enum CLUSTER_SETUP_PHASE_TYPE As Integer
    ClusterSetupPhaseStart = 1
    ClusterSetupPhaseContinue = 2
    ClusterSetupPhaseEnd = 3
    ClusterSetupPhaseReport = 4
End Enum
import enum

class CLUSTER_SETUP_PHASE_TYPE(enum.IntEnum):
    ClusterSetupPhaseStart = 1
    ClusterSetupPhaseContinue = 2
    ClusterSetupPhaseEnd = 3
    ClusterSetupPhaseReport = 4
// CLUSTER_SETUP_PHASE_TYPE
pub const ClusterSetupPhaseStart: i32 = 1;
pub const ClusterSetupPhaseContinue: i32 = 2;
pub const ClusterSetupPhaseEnd: i32 = 3;
pub const ClusterSetupPhaseReport: i32 = 4;
// CLUSTER_SETUP_PHASE_TYPE
const (
	ClusterSetupPhaseStart int32 = 1
	ClusterSetupPhaseContinue int32 = 2
	ClusterSetupPhaseEnd int32 = 3
	ClusterSetupPhaseReport int32 = 4
)
const
  ClusterSetupPhaseStart = 1;
  ClusterSetupPhaseContinue = 2;
  ClusterSetupPhaseEnd = 3;
  ClusterSetupPhaseReport = 4;
// CLUSTER_SETUP_PHASE_TYPE
pub const ClusterSetupPhaseStart: i32 = 1;
pub const ClusterSetupPhaseContinue: i32 = 2;
pub const ClusterSetupPhaseEnd: i32 = 3;
pub const ClusterSetupPhaseReport: i32 = 4;
const
  ClusterSetupPhaseStart* = 1
  ClusterSetupPhaseContinue* = 2
  ClusterSetupPhaseEnd* = 3
  ClusterSetupPhaseReport* = 4
enum CLUSTER_SETUP_PHASE_TYPE : int {
    ClusterSetupPhaseStart = 1,
    ClusterSetupPhaseContinue = 2,
    ClusterSetupPhaseEnd = 3,
    ClusterSetupPhaseReport = 4,
}
#define global ClusterSetupPhaseStart    0x1
#define global ClusterSetupPhaseContinue 0x2
#define global ClusterSetupPhaseEnd      0x3
#define global ClusterSetupPhaseReport   0x4