#ifndef _NTRTL_H
NTSYSAPI
PVOID
NTAPI
RtlFreeSid(
_In_ _Post_invalid_ PSID Sid
);
View code on GitHub
/*
* RTL forward symbol typedefs
*
* This file is part of System Informer.
*/
#ifndef _NTRTL_FWD_H
// begin_forwarders
#ifndef PHNT_INLINE_FREE_FORWARDERS
//#define RtlFreeSid(Sid) RtlFreeHeap(RtlProcessHeap(), 0, (Sid))
FORCEINLINE
PVOID
NTAPI
RtlFreeSid(
_In_ _Post_invalid_ PSID Sid
)
{
RtlFreeHeap(RtlProcessHeap(), 0, Sid);
return NULL;
}
View code on GitHub
This function is documented in Windows Driver Kit.