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