GetProcessHandleCount method
Implementation
int GetProcessHandleCount(
ffi.Pointer<ffi.Void> hProcess,
ffi.Pointer<ffi.Uint64> pdwHandleCount,
) {
return (_GetProcessHandleCount ??= _dylib.lookupFunction<
_c_GetProcessHandleCount,
_dart_GetProcessHandleCount>('GetProcessHandleCount'))(
hProcess,
pdwHandleCount,
);
}