Wow64SuspendThread method

int Wow64SuspendThread(
  1. Pointer<Void> hThread
)

Implementation

int Wow64SuspendThread(
  ffi.Pointer<ffi.Void> hThread,
) {
  return (_Wow64SuspendThread ??=
      _dylib.lookupFunction<_c_Wow64SuspendThread, _dart_Wow64SuspendThread>(
          'Wow64SuspendThread'))(
    hThread,
  );
}