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

CLUSTER_SETUP_PHASE_TYPE

列挙型
基底型i4

メンバー 4

名前10進16進
ClusterSetupPhaseStart10x1
ClusterSetupPhaseContinue20x2
ClusterSetupPhaseEnd30x3
ClusterSetupPhaseReport40x4

各言語での定義

列挙メンバーの定義。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