SuspendThread method

int SuspendThread(
  1. Pointer<Void> hThread
)

Implementation

int SuspendThread(
  ffi.Pointer<ffi.Void> hThread,
) {
  return (_SuspendThread ??=
      _dylib.lookupFunction<_c_SuspendThread, _dart_SuspendThread>(
          'SuspendThread'))(
    hThread,
  );
}