#ifndef _NTRTL_H
#if defined(_M_AMD64) && defined(_M_ARM64EC)
#if (PHNT_VERSION >= PHNT_WINDOWS_8)
NTSYSAPI
VOID
NTAPI
RtlGrowFunctionTable(
_Inout_ PVOID DynamicTable,
_In_ ULONG NewEntryCount
);
View code on GitHub// winnt.h
NTSYSAPI VOID RtlGrowFunctionTable(
PVOID DynamicTable,
[in] DWORD NewEntryCount
);
View the official Win32 API referenceNo description available.
Reports that a dynamic function table has increased in size.
DynamicTableAn opaque reference returned by RtlAddGrowableFunctionTable.
NewEntryCount [in]The new number of entries in the RUNTIME_FUNCTION array. This must be greater than the previously reported size of the array.
This function does not return a value.
RtlGrowFunctionTable should be called after populating the corresponding entries in the RUNTIME_FUNCTION array specified in RtlAddGrowableFunctionTable.