AddAccessDeniedAceEx function
The AddAccessDeniedAceEx function adds an access-denied access control entry (ACE) to the end of a discretionary access control list (DACL).
Syntax
BOOL WINAPI AddAccessDeniedAceEx( _Inout_ PACL pAcl, _In_ DWORD dwAceRevision, _In_ DWORD AceFlags, _In_ DWORD AccessMask, _In_ PSID pSid );
Parameters
- pAcl [in, out]
-
A pointer to a DACL. The AddAccessDeniedAceEx function adds an access-denied ACE to the end of this DACL. The ACE is in the form of an ACCESS_DENIED_ACE structure.
- dwAceRevision [in]
-
Specifies the revision level of the DACL being modified. This value can be ACL_REVISION or ACL_REVISION_DS. Use ACL_REVISION_DS if the DACL contains object-specific ACEs.
- AceFlags [in]
-
A set of bit flags that control ACE inheritance. The function sets these flags in the AceFlags member of the ACE_HEADER structure of the new ACE. This parameter can be a combination of the following values.
Value Meaning - CONTAINER_INHERIT_ACE
The ACE is inherited by container objects.
- INHERIT_ONLY_ACE
The ACE does not apply to the object to which the access control list (ACL) is assigned, but it can be inherited by child objects.
- INHERITED_ACE
Indicates an inherited ACE. This flag allows operations that change the security on a tree of objects to modify inherited ACEs, while not changing ACEs that were directly applied to the object.
- NO_PROPAGATE_INHERIT_ACE
The OBJECT_INHERIT_ACE and CONTAINER_INHERIT_ACE bits are not propagated to an inherited ACE.
- OBJECT_INHERIT_ACE
The ACE is inherited by noncontainer objects.
- AccessMask [in]
-
A set of bit flags that use the ACCESS_MASK format to specify the access rights that the new ACE denies to the specified security identifier (SID).
- pSid [in]
-
A pointer to a SID that identifies the user, group, or logon session to which the new ACE denies access.
Return value
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. The following are possible error values.
| Return code | Description |
|---|---|
|
The new ACE does not fit into the ACL. A larger ACL buffer is required. |
|
The specified ACL is not properly formed. |
|
The AceFlags parameter is not valid. |
|
The specified SID is not structurally valid. |
|
The specified revision is not known or is incompatible with that of the ACL. |
|
The ACE was successfully added. |
Remarks
Although the AddAccessDeniedAceEx function adds the new ACE to the end of the DACL, access-denied ACEs should appear at the beginning of a DACL. The caller must ensure that ACEs are added to the DACL in the correct order. For more information, see Order of ACEs in a DACL.
Requirements
|
Minimum supported client |
Windows XP [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows Server 2003 [desktop apps only] |
|
Header |
|
|
Library |
|
|
DLL |
|
See also
- Low-level Access Control
- Low-level Access Control Functions
- ACCESS_DENIED_ACE
- ACE_HEADER
- ACCESS_MASK
- AddAccessAllowedAceEx
- AddAuditAccessAceEx