Desktop Functions: Smart Device Functions:
|
Search Results for "ACL_INFORMATION_CLASS" in [All]advapi321: GetAce
ACL_INFORMATION_CLASS dwAclInformationClass
enum ACL_INFORMATION_CLASS
GetAclInformation(pAcl, ref AclSize, (uint)Marshal.SizeOf(typeof(ACL_SIZE_INFORMATION)), ACL_INFORMATION_CLASS.AclSizeInformation);
static extern bool GetAclInformation(IntPtr pAcl, IntPtr pAclInformation, uint nAclInformationLength, ACL_INFORMATION_CLASS dwAclInformationClass);
static extern bool GetAclInformation(IntPtr pAcl, ref ACL_REVISION_INFORMATION pAclInformation, uint nAclInformationLength, ACL_INFORMATION_CLASS dwAclInformationClass);
static extern bool GetAclInformation(IntPtr pAcl, ref ACL_SIZE_INFORMATION pAclInformation, uint nAclInformationLength, ACL_INFORMATION_CLASS dwAclInformationClass); EnumsStructuresPass ACL_INFORMATION_CLASS.AclRevisionInformation to GetAclInformation to fill this struct. Pass ACL_INFORMATION_CLASS.AclSizeInformation to GetAclInformation to fill this struct. |