ACCESS_ALLOWED_ACE
The ACCESS_ALLOWED_ACE
structure defines an access-control entry (ACE) for the discretionary
access-control list (ACL) that controls access to an object. An access-allowed
ACE allows access to an object for a specific subject identified by a security
identifier (SID).
typedef struct _ACCESS_ALLOWED_ACE { // aaace
ACE_HEADER
Header;
ACCESS_MASK Mask;
DWORD
SidStart;
} ACCESS_ALLOWED_ACE;
Members
Header
Specifies an ACE_HEADER
Mask
Specifies an ACCESS_MASK
SidStart
Specifies a
SID. The access rights specified by the Mask member are granted to any
subject possessing an enabled SID matching this member.
Remarks
ACE
structures must be aligned on doubleword boundaries. All Windows
memory-management functions return doubleword-aligned handles to memory.
See Also