RtlGrowFunctionTable - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#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
    );

#endif
#endif
#endif

View code on GitHub
// winnt.h

NTSYSAPI VOID RtlGrowFunctionTable(
       PVOID DynamicTable,
  [in] DWORD NewEntryCount
);
View the official Win32 API reference

NtDoc

No description available.

Win32 API reference (nf-winnt-rtlgrowfunctiontable)

RtlGrowFunctionTable function

Description

Reports that a dynamic function table has increased in size.

Parameters

DynamicTable

An 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.

Return value

This function does not return a value.

Remarks

RtlGrowFunctionTable should be called after populating the corresponding entries in the RUNTIME_FUNCTION array specified in RtlAddGrowableFunctionTable.