Win32 API 日本語リファレンス
ホームSecurity › ACL_INFORMATION_CLASS

ACL_INFORMATION_CLASS

列挙型
基底型i4

メンバー 2

名前10進16進
AclRevisionInformation10x1
AclSizeInformation20x2

各言語での定義

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