ACL_SIZE_INFORMATION

typedef struct _ACL_SIZE_INFORMATION {

DWORD AceCount;

DWORD AclBytesInUse;

DWORD AclBytesFree;

} ACL_SIZE_INFORMATION;

The ACL_SIZE_INFORMATION data structure contains information concerning the size of an ACL (access control list).

Members

AceCount

Specifies the number of ACEs in the ACL. An ACE is an access control entry.

AclBytesInUse

Specifies the number of bytes of the ACL actually being used to store the ACEs and ACL header. This is not the number of bytes allocated to the ACL, just the number of bytes in use.

AclBytesFree

Specifies the number of unused bytes remaining in the ACL.

See Also

GetAclInformation, ACL_REVISION_INFORMATION