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

CLUSTER_STORAGENODE_STATE

列挙型
基底型i4

メンバー 6

名前10進16進
ClusterStorageNodeStateUnknown00x0
ClusterStorageNodeUp10x1
ClusterStorageNodeDown20x2
ClusterStorageNodePaused30x3
ClusterStorageNodeStarting40x4
ClusterStorageNodeStopping50x5

各言語での定義

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

typedef enum CLUSTER_STORAGENODE_STATE : int {
    ClusterStorageNodeStateUnknown = 0,
    ClusterStorageNodeUp = 1,
    ClusterStorageNodeDown = 2,
    ClusterStorageNodePaused = 3,
    ClusterStorageNodeStarting = 4,
    ClusterStorageNodeStopping = 5
} CLUSTER_STORAGENODE_STATE;
public enum CLUSTER_STORAGENODE_STATE : int
{
    ClusterStorageNodeStateUnknown = 0,
    ClusterStorageNodeUp = 1,
    ClusterStorageNodeDown = 2,
    ClusterStorageNodePaused = 3,
    ClusterStorageNodeStarting = 4,
    ClusterStorageNodeStopping = 5,
}
Public Enum CLUSTER_STORAGENODE_STATE As Integer
    ClusterStorageNodeStateUnknown = 0
    ClusterStorageNodeUp = 1
    ClusterStorageNodeDown = 2
    ClusterStorageNodePaused = 3
    ClusterStorageNodeStarting = 4
    ClusterStorageNodeStopping = 5
End Enum
import enum

class CLUSTER_STORAGENODE_STATE(enum.IntEnum):
    ClusterStorageNodeStateUnknown = 0
    ClusterStorageNodeUp = 1
    ClusterStorageNodeDown = 2
    ClusterStorageNodePaused = 3
    ClusterStorageNodeStarting = 4
    ClusterStorageNodeStopping = 5
// CLUSTER_STORAGENODE_STATE
pub const ClusterStorageNodeStateUnknown: i32 = 0;
pub const ClusterStorageNodeUp: i32 = 1;
pub const ClusterStorageNodeDown: i32 = 2;
pub const ClusterStorageNodePaused: i32 = 3;
pub const ClusterStorageNodeStarting: i32 = 4;
pub const ClusterStorageNodeStopping: i32 = 5;
// CLUSTER_STORAGENODE_STATE
const (
	ClusterStorageNodeStateUnknown int32 = 0
	ClusterStorageNodeUp int32 = 1
	ClusterStorageNodeDown int32 = 2
	ClusterStorageNodePaused int32 = 3
	ClusterStorageNodeStarting int32 = 4
	ClusterStorageNodeStopping int32 = 5
)
const
  ClusterStorageNodeStateUnknown = 0;
  ClusterStorageNodeUp = 1;
  ClusterStorageNodeDown = 2;
  ClusterStorageNodePaused = 3;
  ClusterStorageNodeStarting = 4;
  ClusterStorageNodeStopping = 5;
// CLUSTER_STORAGENODE_STATE
pub const ClusterStorageNodeStateUnknown: i32 = 0;
pub const ClusterStorageNodeUp: i32 = 1;
pub const ClusterStorageNodeDown: i32 = 2;
pub const ClusterStorageNodePaused: i32 = 3;
pub const ClusterStorageNodeStarting: i32 = 4;
pub const ClusterStorageNodeStopping: i32 = 5;
const
  ClusterStorageNodeStateUnknown* = 0
  ClusterStorageNodeUp* = 1
  ClusterStorageNodeDown* = 2
  ClusterStorageNodePaused* = 3
  ClusterStorageNodeStarting* = 4
  ClusterStorageNodeStopping* = 5
enum CLUSTER_STORAGENODE_STATE : int {
    ClusterStorageNodeStateUnknown = 0,
    ClusterStorageNodeUp = 1,
    ClusterStorageNodeDown = 2,
    ClusterStorageNodePaused = 3,
    ClusterStorageNodeStarting = 4,
    ClusterStorageNodeStopping = 5,
}
#define global ClusterStorageNodeStateUnknown 0x0
#define global ClusterStorageNodeUp           0x1
#define global ClusterStorageNodeDown         0x2
#define global ClusterStorageNodePaused       0x3
#define global ClusterStorageNodeStarting     0x4
#define global ClusterStorageNodeStopping     0x5