ACL Structure

Type ACL
  AclRevision As Byte
  Sbz1 As Byte
  AclSize As Integer
  AceCount As Integer
  Sbz2 As Integer
End Type

ACL-type variables store information about an access-control list (ACL). The ACL structure is followed by zero or more access-control entries (ACEs) which the ACL is made up of. Note how the ACEs are not actually stored inside the ACL structure.

AclRevision
Must be set to the following flag which specifies the ACL's revision level:
ACL_REVISION = 2
The only valid revision level.
Sbz1
Reserved -- set to 0. This member merely aligns the structure's other members in memory.
AclSize
The combined size in bytes of this structure and all of the ACEs which follow it.
AceCount
The number of ACEs which follow this structure.
Sbz2
Reserved -- set to 0. This member merely aligns the structure's other members in memory.

Used by: SECURITY_DESCRIPTOR

Go back to the alphabetical Structure listing.
Go back to the Reference section index.


This page is copyright © 2000 Paul Kuliniewicz. Copyright Information.
Go back to the Windows API Guide home page.
E-mail: vbapi@vbapi.com Send Encrypted E-Mail
This page is at http://www.vbapi.com/ref/a/acl.html