#ifndef _NTRTL_H
NTSYSAPI
NTSTATUS
NTAPI
RtlDestroyProcessParameters(
_In_ _Post_invalid_ PRTL_USER_PROCESS_PARAMETERS ProcessParameters
);
View code on GitHub
#ifndef _NTRTL_FWD_H
// begin_forwarders
#ifndef PHNT_INLINE_FREE_FORWARDERS
//#define RtlDestroyProcessParameters(ProcessParameters) RtlFreeHeap(RtlProcessHeap(), 0, (ProcessParameters))
FORCEINLINE
NTSTATUS
RtlDestroyProcessParameters(
_In_ _Post_invalid_ PRTL_USER_PROCESS_PARAMETERS ProcessParameters
)
{
RtlFreeHeap(RtlProcessHeap(), 0, ProcessParameters);
return STATUS_SUCCESS;
}
View code on GitHub
No description available.