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

ACL_INFORMATION_CLASS

列挙型
基底型i4

メンバー 2

名前10進16進説明
AclRevisionInformation10x1ACL のリビジョン情報を示します。
AclSizeInformation20x2ACL のサイズ情報を示します。

公式ドキュメント

ACL_INFORMATION_CLASS 列挙型には、アクセス制御リスト (ACL) に割り当てる、または ACL から取得する情報の種類を指定する値が含まれます。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

列挙メンバーの定義。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