RtlDeleteFunctionTable function (winnt.h)
Removes a dynamic function table from the dynamic function table list.
Syntax
NTSYSAPI BOOLEAN RtlDeleteFunctionTable(
[in] PRUNTIME_FUNCTION FunctionTable
);
Parameters
[in] FunctionTable
A pointer to an array of function entries that were previously passed to RtlAddFunctionTable or an identifier previously passed to RtlInstallFunctionTableCallback. For a definition of the PRUNTIME_FUNCTION type, see WinNT.h.
Return value
If the function succeeds, the return value is TRUE. Otherwise, the return value is FALSE.
Remarks
Function tables are used on 64-bit Windows to determine how to unwind or walk the stack. These tables are usually generated by the compiler and stored as part of the image. However, applications must provide the function table for dynamically generated code. For more information about function tables, see the architecture guide for your system.
Requirements
Requirement | Value |
---|---|
Target Platform | Windows |
Header | winnt.h (include Windows.h) |
Library | Kernel32.lib |
DLL | Kernel32.dll |