#ifndef _NTRTL_H
NTSYSAPI
NTSTATUS
NTAPI
RtlSetSaclSecurityDescriptor(
_Inout_ PSECURITY_DESCRIPTOR SecurityDescriptor,
_In_ BOOLEAN SaclPresent,
_In_opt_ PACL Sacl,
_In_ BOOLEAN SaclDefaulted
);
View code on GitHubNTSTATUS NTAPI RtlSetSaclSecurityDescriptor (
PSECURITY_DESCRIPTOR SecurityDescriptor,
BOOLEAN SaclPresent,
PACL Sacl,
BOOLEAN SaclDefaulted
);
View the official Win32 development documentationNo description available.
Adds the suppled SACL to the specified security descriptor.
The security descriptor to be updated with a new SACL.
A Boolean variable that indicates wether the SACL present flag should be set in the specified security descriptor.
A pointer to the SACL to write to the specified by SecurityDescriptor parameter. If NULL, a NULL SACL is written to the security descriptor.
If present, supplies a pointer to a variable which, on success, receives a pointer to the base name portion of the output NT path name.
An NTSTATUS code. For more information, see Using NTSTATUS values.
This function has no associated import library or header file; you must call it using the LoadLibrary and GetProcAddress functions. The API is exported from ntdll.dll.
| Requirement | Value |
|---|---|
| DLL | ntdll.dll |