The AddAce function adds one or more ACEs to a specified ACL.
An ACE is an access-control entry. An ACL is an access-control list.
BOOL AddAce(
PACL pAcl, // pointer to access-control list
DWORD dwAceRevision, // ACL revision level
DWORD dwStartingAceIndex, // index of ACE position in ACL
LPVOID pAceList, // pointer to one or more ACEs
DWORD nAceListLength // size of buffer for ACEs
);
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
Applications frequently use the FindFirstFreeAce and GetAce functions when using the AddAce function to manipulate an ACL. In addition, the ACL_SIZE_INFORMATION structure retrieved by the GetAclInformation function contains the size of the ACL and the number of ACEs it contains.
Windows NT: Requires version 3.1 or later.
Windows: Unsupported.
Windows CE: Unsupported.
Header: Declared in winbase.h.
Import Library: Use advapi32.lib.
Low-Level Access-Control Overview, Low-Level Access Control Functions, ACL, ACL_SIZE_INFORMATION, AddAccessAllowedAce, AddAccessDeniedAce, AddAuditAccessAce, DeleteAce, FindFirstFreeAce, GetAce, GetAclInformation