Win32 API 日本語リファレンス
ホームSystem.SystemServices › ENLISTMENT_INFORMATION_CLASS

ENLISTMENT_INFORMATION_CLASS

列挙型
基底型i4

メンバー 3

名前10進16進
EnlistmentBasicInformation00x0
EnlistmentRecoveryInformation10x1
EnlistmentCrmInformation20x2

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 2
enum ENLISTMENT_INFORMATION_CLASS : int {
    EnlistmentBasicInformation = 0,
    EnlistmentRecoveryInformation = 1,
    EnlistmentCrmInformation = 2,
}
#define global EnlistmentBasicInformation    0x0
#define global EnlistmentRecoveryInformation 0x1
#define global EnlistmentCrmInformation      0x2