RtlDeleteGrowableFunctionTable - 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
RtlDeleteGrowableFunctionTable(
    _In_ PVOID DynamicTable
    );

#endif
#endif
#endif

View code on GitHub
// winnt.h

NTSYSAPI VOID RtlDeleteGrowableFunctionTable(
  [in] PVOID DynamicTable
);
View the official Win32 API reference

NtDoc

No description available.

Win32 API reference (nf-winnt-rtldeletegrowablefunctiontable)

RtlDeleteGrowableFunctionTable function

Description

Informs the system that a previously reported dynamic function table is no longer in use.

Parameters

DynamicTable [in]

An opaque reference returned by RtlAddGrowableFunctionTable.

Return value

This function does not return a value.