CreateThreadpool method

Pointer<_TP_POOL> CreateThreadpool(
  1. Pointer<Void> reserved
)

Implementation

ffi.Pointer<_TP_POOL> CreateThreadpool(
  ffi.Pointer<ffi.Void> reserved,
) {
  return (_CreateThreadpool ??=
      _dylib.lookupFunction<_c_CreateThreadpool, _dart_CreateThreadpool>(
          'CreateThreadpool'))(
    reserved,
  );
}