RtlLookupFunctionEntry

[DllImport("KERNEL32.dll", ExactSpelling = true)]
[DefaultDllImportSearchPaths(DllImportSearchPath.System32)]
public static extern unsafe IMAGE_RUNTIME_FUNCTION_ENTRY* RtlLookupFunctionEntry(
    ulong ControlPc,
    ulong* ImageBase,
    [Optional] UNWIND_HISTORY_TABLE* HistoryTable);

IMAGE_RUNTIME_FUNCTION_ENTRY

UNWIND_HISTORY_TABLE

Last updated