RtlRaiseException method

void RtlRaiseException(
  1. Pointer<EXCEPTION_RECORD> ExceptionRecord
)

Implementation

void RtlRaiseException(
  ffi.Pointer<EXCEPTION_RECORD> ExceptionRecord,
) {
  return (_RtlRaiseException ??=
      _dylib.lookupFunction<_c_RtlRaiseException, _dart_RtlRaiseException>(
          'RtlRaiseException'))(
    ExceptionRecord,
  );
}