RaiseFailFastException method

void RaiseFailFastException(
  1. Pointer<EXCEPTION_RECORD> pExceptionRecord,
  2. Pointer<CONTEXT> pContextRecord,
  3. int dwFlags
)

Implementation

void RaiseFailFastException(
  ffi.Pointer<EXCEPTION_RECORD> pExceptionRecord,
  ffi.Pointer<CONTEXT> pContextRecord,
  int dwFlags,
) {
  return _RaiseFailFastException(
    pExceptionRecord,
    pContextRecord,
    dwFlags,
  );
}