ホーム › System.SystemServices › ENLISTMENT_INFORMATION_CLASS
ENLISTMENT_INFORMATION_CLASS
列挙型メンバー 3
| 名前 | 10進 | 16進 |
|---|---|---|
| EnlistmentBasicInformation | 0 | 0x0 |
| EnlistmentRecoveryInformation | 1 | 0x1 |
| EnlistmentCrmInformation | 2 | 0x2 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum ENLISTMENT_INFORMATION_CLASS : int {
EnlistmentBasicInformation = 0,
EnlistmentRecoveryInformation = 1,
EnlistmentCrmInformation = 2
} ENLISTMENT_INFORMATION_CLASS;public enum ENLISTMENT_INFORMATION_CLASS : int
{
EnlistmentBasicInformation = 0,
EnlistmentRecoveryInformation = 1,
EnlistmentCrmInformation = 2,
}Public Enum ENLISTMENT_INFORMATION_CLASS As Integer
EnlistmentBasicInformation = 0
EnlistmentRecoveryInformation = 1
EnlistmentCrmInformation = 2
End Enumimport enum
class ENLISTMENT_INFORMATION_CLASS(enum.IntEnum):
EnlistmentBasicInformation = 0
EnlistmentRecoveryInformation = 1
EnlistmentCrmInformation = 2// ENLISTMENT_INFORMATION_CLASS
pub const EnlistmentBasicInformation: i32 = 0;
pub const EnlistmentRecoveryInformation: i32 = 1;
pub const EnlistmentCrmInformation: i32 = 2;// ENLISTMENT_INFORMATION_CLASS
const (
EnlistmentBasicInformation int32 = 0
EnlistmentRecoveryInformation int32 = 1
EnlistmentCrmInformation int32 = 2
)const
EnlistmentBasicInformation = 0;
EnlistmentRecoveryInformation = 1;
EnlistmentCrmInformation = 2;// ENLISTMENT_INFORMATION_CLASS
pub const EnlistmentBasicInformation: i32 = 0;
pub const EnlistmentRecoveryInformation: i32 = 1;
pub const EnlistmentCrmInformation: i32 = 2;const
EnlistmentBasicInformation* = 0
EnlistmentRecoveryInformation* = 1
EnlistmentCrmInformation* = 2enum ENLISTMENT_INFORMATION_CLASS : int {
EnlistmentBasicInformation = 0,
EnlistmentRecoveryInformation = 1,
EnlistmentCrmInformation = 2,
}#define global EnlistmentBasicInformation 0x0
#define global EnlistmentRecoveryInformation 0x1
#define global EnlistmentCrmInformation 0x2