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

CLUSTER_RESOURCE_RESTART_ACTION

列挙型
基底型i4

メンバー 4

名前10進16進
ClusterResourceDontRestart00x0
ClusterResourceRestartNoNotify10x1
ClusterResourceRestartNotify20x2
ClusterResourceRestartActionCount30x3

各言語での定義

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

typedef enum CLUSTER_RESOURCE_RESTART_ACTION : int {
    ClusterResourceDontRestart = 0,
    ClusterResourceRestartNoNotify = 1,
    ClusterResourceRestartNotify = 2,
    ClusterResourceRestartActionCount = 3
} CLUSTER_RESOURCE_RESTART_ACTION;
public enum CLUSTER_RESOURCE_RESTART_ACTION : int
{
    ClusterResourceDontRestart = 0,
    ClusterResourceRestartNoNotify = 1,
    ClusterResourceRestartNotify = 2,
    ClusterResourceRestartActionCount = 3,
}
Public Enum CLUSTER_RESOURCE_RESTART_ACTION As Integer
    ClusterResourceDontRestart = 0
    ClusterResourceRestartNoNotify = 1
    ClusterResourceRestartNotify = 2
    ClusterResourceRestartActionCount = 3
End Enum
import enum

class CLUSTER_RESOURCE_RESTART_ACTION(enum.IntEnum):
    ClusterResourceDontRestart = 0
    ClusterResourceRestartNoNotify = 1
    ClusterResourceRestartNotify = 2
    ClusterResourceRestartActionCount = 3
// CLUSTER_RESOURCE_RESTART_ACTION
pub const ClusterResourceDontRestart: i32 = 0;
pub const ClusterResourceRestartNoNotify: i32 = 1;
pub const ClusterResourceRestartNotify: i32 = 2;
pub const ClusterResourceRestartActionCount: i32 = 3;
// CLUSTER_RESOURCE_RESTART_ACTION
const (
	ClusterResourceDontRestart int32 = 0
	ClusterResourceRestartNoNotify int32 = 1
	ClusterResourceRestartNotify int32 = 2
	ClusterResourceRestartActionCount int32 = 3
)
const
  ClusterResourceDontRestart = 0;
  ClusterResourceRestartNoNotify = 1;
  ClusterResourceRestartNotify = 2;
  ClusterResourceRestartActionCount = 3;
// CLUSTER_RESOURCE_RESTART_ACTION
pub const ClusterResourceDontRestart: i32 = 0;
pub const ClusterResourceRestartNoNotify: i32 = 1;
pub const ClusterResourceRestartNotify: i32 = 2;
pub const ClusterResourceRestartActionCount: i32 = 3;
const
  ClusterResourceDontRestart* = 0
  ClusterResourceRestartNoNotify* = 1
  ClusterResourceRestartNotify* = 2
  ClusterResourceRestartActionCount* = 3
enum CLUSTER_RESOURCE_RESTART_ACTION : int {
    ClusterResourceDontRestart = 0,
    ClusterResourceRestartNoNotify = 1,
    ClusterResourceRestartNotify = 2,
    ClusterResourceRestartActionCount = 3,
}
#define global ClusterResourceDontRestart        0x0
#define global ClusterResourceRestartNoNotify    0x1
#define global ClusterResourceRestartNotify      0x2
#define global ClusterResourceRestartActionCount 0x3