RaiseException method
void
RaiseException()
Implementation
void RaiseException(
int dwExceptionCode,
int dwExceptionFlags,
int nNumberOfArguments,
ffi.Pointer<ffi.Uint64> lpArguments,
) {
return (_RaiseException ??=
_dylib.lookupFunction<_c_RaiseException, _dart_RaiseException>(
'RaiseException'))(
dwExceptionCode,
dwExceptionFlags,
nNumberOfArguments,
lpArguments,
);
}