#ifndef _NTRTL_H
#ifdef _WIN64
// rev
NTSYSAPI
PLIST_ENTRY
NTAPI
RtlGetFunctionTableListHead(
VOID
);
View code on GitHubPLIST_ENTRY RtlGetFunctionTableListHead(void);
View the official Win32 development documentationThis function is documented in Windows SDK.
[This function may be changed or removed from Windows without further notice.]
Enables a debugger to examine dynamic function table information.
This function has no parameters.
Returns a pointer to the head of the function table linked list. Nodes in this list are of type DYNAMIC_FUNCTION_TABLE. A debugger can walk all the entries in this list to find all of the function tables in a target process.
Note that the Windows Driver Kit (WDK) header file Ntdef.h is required for some definitions. The associated import library, Ntdll.lib, is available in the WDK. You can also use the LoadLibrary and GetProcAddress functions to dynamically link to Ntdll.dll.
| Requirement | Value |
|---|---|
| DLL |
Ntdll.dll |