RtlLookupFunctionEntry method

Pointer<_IMAGE_RUNTIME_FUNCTION_ENTRY> RtlLookupFunctionEntry(
  1. int ControlPc,
  2. Pointer<Uint64> ImageBase,
  3. Pointer<UNWIND_HISTORY_TABLE> HistoryTable
)

Implementation

ffi.Pointer<_IMAGE_RUNTIME_FUNCTION_ENTRY> RtlLookupFunctionEntry(
  int ControlPc,
  ffi.Pointer<ffi.Uint64> ImageBase,
  ffi.Pointer<UNWIND_HISTORY_TABLE> HistoryTable,
) {
  return _RtlLookupFunctionEntry(
    ControlPc,
    ImageBase,
    HistoryTable,
  );
}