CloseThreadpoolCleanupGroupMembers method

void CloseThreadpoolCleanupGroupMembers(
  1. Pointer<_TP_CLEANUP_GROUP> ptpcg,
  2. int fCancelPendingCallbacks,
  3. Pointer<Void> pvCleanupContext
)

Implementation

void CloseThreadpoolCleanupGroupMembers(
  ffi.Pointer<_TP_CLEANUP_GROUP> ptpcg,
  int fCancelPendingCallbacks,
  ffi.Pointer<ffi.Void> pvCleanupContext,
) {
  return (_CloseThreadpoolCleanupGroupMembers ??= _dylib.lookupFunction<
          _c_CloseThreadpoolCleanupGroupMembers,
          _dart_CloseThreadpoolCleanupGroupMembers>(
      'CloseThreadpoolCleanupGroupMembers'))(
    ptpcg,
    fCancelPendingCallbacks,
    pvCleanupContext,
  );
}