#ifndef _NTRTL_H
#if defined(_M_AMD64) && defined(_M_ARM64EC)
#if (PHNT_VERSION >= PHNT_WINDOWS_8)
NTSYSAPI
VOID
NTAPI
RtlDeleteGrowableFunctionTable(
_In_ PVOID DynamicTable
);
View code on GitHub// winnt.h
NTSYSAPI VOID RtlDeleteGrowableFunctionTable(
[in] PVOID DynamicTable
);
View the official Win32 API referenceNo description available.
Informs the system that a previously reported dynamic function table is no longer in use.
DynamicTable [in]An opaque reference returned by RtlAddGrowableFunctionTable.
This function does not return a value.