RtlRestoreContext method

void RtlRestoreContext(
  1. Pointer<CONTEXT> ContextRecord,
  2. Pointer<EXCEPTION_RECORD> ExceptionRecord
)

Implementation

void RtlRestoreContext(
  ffi.Pointer<CONTEXT> ContextRecord,
  ffi.Pointer<EXCEPTION_RECORD> ExceptionRecord,
) {
  return _RtlRestoreContext(
    ContextRecord,
    ExceptionRecord,
  );
}