RaiseException method

void RaiseException(
  1. int dwExceptionCode,
  2. int dwExceptionFlags,
  3. int nNumberOfArguments,
  4. Pointer<Uint64> lpArguments,
)

Implementation

void RaiseException(
  int dwExceptionCode,
  int dwExceptionFlags,
  int nNumberOfArguments,
  ffi.Pointer<ffi.Uint64> lpArguments,
) {
  return _RaiseException(
    dwExceptionCode,
    dwExceptionFlags,
    nNumberOfArguments,
    lpArguments,
  );
}