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