DebugBreakProcess method

int DebugBreakProcess(
  1. Pointer<Void> Process
)

Implementation

int DebugBreakProcess(
  ffi.Pointer<ffi.Void> Process,
) {
  return (_DebugBreakProcess ??=
      _dylib.lookupFunction<_c_DebugBreakProcess, _dart_DebugBreakProcess>(
          'DebugBreakProcess'))(
    Process,
  );
}