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