AddMandatoryAce function
The AddMandatoryAce function adds a SYSTEM_MANDATORY_LABEL_ACE access control entry (ACE) to the specified system access control list (SACL).
Syntax
BOOL WINAPI AddMandatoryAce( _Inout_ PACL pAcl, _In_ DWORD dwAceRevision, _In_ DWORD AceFlags, _In_ DWORD MandatoryPolicy, _In_ PSID pLabelSid );
Parameters
- pAcl [in, out]
-
A pointer to an SACL. This function adds a mandatory ACE to the end of this SACL. The ACE is in the form of a SYSTEM_MANDATORY_LABEL_ACE structure.
- dwAceRevision [in]
-
The revision level of the SACL being modified. This value can be one of the following values.
Value Meaning - ACL_REVISION
The SACL does not contain object-specific ACEs.
- ACL_REVISION_DS
The SACL contains object-specified ACEs.
- AceFlags [in]
-
A set of bit flags that control ACE inheritance. This 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.
- MandatoryPolicy [in]
-
The access policy for principals with a mandatory integrity level lower than the object associated with the SACL that contains this ACE.
- pLabelSid [in]
-
A pointer to an SID that specifies the mandatory integrity level of the object associated with the SACL being appended.
Return value
If the function succeeds, it returns TRUE.
If the function fails, it returns FALSE. For extended error information, call GetLastError. The following are possible error values.
Return code/value | Description |
---|---|
|
The new ACE does not fit into the pAcl buffer. |
Remarks
To compile an application that uses this function, define _WIN32_WINNT as 0x0600 or later. For more information, see Using the Windows Headers.
Requirements
Minimum supported client |
Windows Vista [desktop apps | UWP apps] |
---|---|
Minimum supported server |
Windows Server 2008 [desktop apps | UWP apps] |
Header |
|
Library |
|
DLL |
|
See also