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

ACE_REVISION

列挙型
基底型u4

メンバー 2

名前10進16進
ACL_REVISION20x2
ACL_REVISION_DS40x4

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum ACE_REVISION : unsigned int {
    ACL_REVISION = 2,
    ACL_REVISION_DS = 4
} ACE_REVISION;
public enum ACE_REVISION : uint
{
    ACL_REVISION = 2,
    ACL_REVISION_DS = 4,
}
Public Enum ACE_REVISION As UInteger
    ACL_REVISION = 2
    ACL_REVISION_DS = 4
End Enum
import enum

class ACE_REVISION(enum.IntEnum):
    ACL_REVISION = 2
    ACL_REVISION_DS = 4
// ACE_REVISION
pub const ACL_REVISION: u32 = 2;
pub const ACL_REVISION_DS: u32 = 4;
// ACE_REVISION
const (
	ACL_REVISION uint32 = 2
	ACL_REVISION_DS uint32 = 4
)
const
  ACL_REVISION = 2;
  ACL_REVISION_DS = 4;
// ACE_REVISION
pub const ACL_REVISION: u32 = 2;
pub const ACL_REVISION_DS: u32 = 4;
const
  ACL_REVISION* = 2
  ACL_REVISION_DS* = 4
enum ACE_REVISION : uint {
    ACL_REVISION = 2,
    ACL_REVISION_DS = 4,
}
#define global ACL_REVISION    0x2
#define global ACL_REVISION_DS 0x4