RtlUnwindEx method

void RtlUnwindEx(
  1. Pointer<Void> TargetFrame,
  2. Pointer<Void> TargetIp,
  3. Pointer<EXCEPTION_RECORD> ExceptionRecord,
  4. Pointer<Void> ReturnValue,
  5. Pointer<CONTEXT> ContextRecord,
  6. Pointer<UNWIND_HISTORY_TABLE> HistoryTable,
)

Implementation

void RtlUnwindEx(
  ffi.Pointer<ffi.Void> TargetFrame,
  ffi.Pointer<ffi.Void> TargetIp,
  ffi.Pointer<EXCEPTION_RECORD> ExceptionRecord,
  ffi.Pointer<ffi.Void> ReturnValue,
  ffi.Pointer<CONTEXT> ContextRecord,
  ffi.Pointer<UNWIND_HISTORY_TABLE> HistoryTable,
) {
  return _RtlUnwindEx(
    TargetFrame,
    TargetIp,
    ExceptionRecord,
    ReturnValue,
    ContextRecord,
    HistoryTable,
  );
}