|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| No
| Win32s
| No
| Import Library
| -
| Header File
| winnt.h
| Unicode
| No
| Platform Notes
| None
|
|
|
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 structure.
Mask
Specifies an ACCESS_MASK structure that specifies the access rights granted by this ACE.
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
AddAccessAllowedAce, AddAce, GetAce, ACCESS_DENIED_ACE, ACCESS_MASK, ACE_HEADER, ACL, SID, SYSTEM_ALARM_ACE, SYSTEM_AUDIT_ACE
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|