RtlAddGrowableFunctionTable - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTRTL_H
// begin_msdn:"Winternl"
#if defined(_M_AMD64) && defined(_M_ARM64EC)
#if (PHNT_VERSION >= PHNT_WIN8)

NTSYSAPI
DWORD   
NTAPI
RtlAddGrowableFunctionTable(
    _Out_ PVOID* DynamicTable,
    _In_reads_(MaximumEntryCount) PRUNTIME_FUNCTION FunctionTable,
    _In_ DWORD EntryCount,
    _In_ DWORD MaximumEntryCount,
    _In_ ULONG_PTR RangeBase,
    _In_ ULONG_PTR RangeEnd
    );

#endif
#endif
// end_msdn
#endif

View code on GitHub

No description available.