SetThreadpoolWaitEx method

int SetThreadpoolWaitEx(
  1. Pointer<_TP_WAIT> pwa,
  2. Pointer<Void> h,
  3. Pointer<LPFILETIME> pftTimeout,
  4. Pointer<Void> Reserved,
)

Implementation

int SetThreadpoolWaitEx(
  ffi.Pointer<_TP_WAIT> pwa,
  ffi.Pointer<ffi.Void> h,
  ffi.Pointer<LPFILETIME> pftTimeout,
  ffi.Pointer<ffi.Void> Reserved,
) {
  return (_SetThreadpoolWaitEx ??= _dylib.lookupFunction<
      _c_SetThreadpoolWaitEx,
      _dart_SetThreadpoolWaitEx>('SetThreadpoolWaitEx'))(
    pwa,
    h,
    pftTimeout,
    Reserved,
  );
}