CreateThreadpoolWork method
Pointer<_TP_WORK>
CreateThreadpoolWork(
- Pointer<
NativeFunction< pfnwk,PTP_WORK_CALLBACK> > - Pointer<
Void> pv, - Pointer<
TP_CALLBACK_ENVIRON_V3> pcbe
Implementation
ffi.Pointer<_TP_WORK> CreateThreadpoolWork(
ffi.Pointer<ffi.NativeFunction<PTP_WORK_CALLBACK>> pfnwk,
ffi.Pointer<ffi.Void> pv,
ffi.Pointer<TP_CALLBACK_ENVIRON_V3> pcbe,
) {
return (_CreateThreadpoolWork ??= _dylib.lookupFunction<
_c_CreateThreadpoolWork,
_dart_CreateThreadpoolWork>('CreateThreadpoolWork'))(
pfnwk,
pv,
pcbe,
);
}