RtlLookupFunctionEntry method

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

Implementation

ffi.Pointer<_PIMAGE_RUNTIME_FUNCTION_ENTRY> RtlLookupFunctionEntry(
  int ControlPc,
  ffi.Pointer<ffi.Uint64> ImageBase,
  ffi.Pointer<PUNWIND_HISTORY_TABLE> HistoryTable,
) {
  return (_RtlLookupFunctionEntry ??= _dylib.lookupFunction<
      _c_RtlLookupFunctionEntry,
      _dart_RtlLookupFunctionEntry>('RtlLookupFunctionEntry'))(
    ControlPc,
    ImageBase,
    HistoryTable,
  );
}