getaclinformation (advapi32)
Last changed: anonymous

.
Summary
Retrieves information about an access control list (ACL)

C# Signature:

[DllImport("advapi32.dll", SetLastError = true)]
static extern bool GetAclInformation(IntPtr pAcl, IntPtr pAclInformation, uint nAclInformationLength, ACL_INFORMATION_CLASS dwAclInformationClass);

[DllImport("advapi32.dll", SetLastError = true)]
static extern bool GetAclInformation(IntPtr pAcl, ref ACL_REVISION_INFORMATION pAclInformation, uint nAclInformationLength, ACL_INFORMATION_CLASS dwAclInformationClass);

[DllImport("advapi32.dll", SetLastError = true)]
static extern bool GetAclInformation(IntPtr pAcl, ref ACL_SIZE_INFORMATION pAclInformation, uint nAclInformationLength, ACL_INFORMATION_CLASS dwAclInformationClass);

VB Signature:

Declare Function GetAclInformation Lib "advapi32.dll" (TODO) As TODO

User-Defined Types:

ACL_INFORMATION_CLASS

ACL_REVISION_INFORMATION

ACL_SIZE_INFORMATION

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation