#ifndef _NTRTL_H
#if (PHNT_VERSION >= PHNT_WINDOWS_11_24H2)
NTSYSAPI
NTSTATUS
NTAPI
RtlGetAcesBufferSize(
_In_ PACL Acl,
_Out_ PULONG AcesBufferSize
);
View code on GitHub// ntifs.h
NTSYSAPI NTSTATUS RtlGetAcesBufferSize(
PACL Acl,
PULONG AcesBufferSize
);
View the official Windows Driver Kit DDI referenceNo description available.
RtlGetAcesBufferSize computes the size of the access control entries (ACEs) for the specified access control list (ACL).
Acl[in] Pointer to the ACL to be queried.
AcesBufferSize[out] Receives the size of the buffer used to store the ACEs in the ACL.
RtlGetAcesBufferSize returns STATUS_SUCCESS upon success. It returns STATUS_INVALID_PARAMETER if Acl or AcesBufferSize are NULL.