RtlLookupFunctionEntry method
Pointer<_PIMAGE_RUNTIME_FUNCTION_ENTRY>
RtlLookupFunctionEntry(
- int ControlPc,
- Pointer<
Uint64> ImageBase, - 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,
);
}