SetThreadpoolWaitEx method

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

Implementation

int SetThreadpoolWaitEx(
  ffi.Pointer<_TP_WAIT> pwa,
  ffi.Pointer<ffi.Void> h,
  ffi.Pointer<FILETIME> pftTimeout,
  ffi.Pointer<ffi.Void> Reserved,
) {
  return _SetThreadpoolWaitEx(
    pwa,
    h,
    pftTimeout,
    Reserved,
  );
}