GetProcessDefaultCpuSets method

int GetProcessDefaultCpuSets(
  1. Pointer<Void> Process,
  2. Pointer<Uint64> CpuSetIds,
  3. int CpuSetIdCount,
  4. Pointer<Uint64> RequiredIdCount,
)

Implementation

int GetProcessDefaultCpuSets(
  ffi.Pointer<ffi.Void> Process,
  ffi.Pointer<ffi.Uint64> CpuSetIds,
  int CpuSetIdCount,
  ffi.Pointer<ffi.Uint64> RequiredIdCount,
) {
  return _GetProcessDefaultCpuSets(
    Process,
    CpuSetIds,
    CpuSetIdCount,
    RequiredIdCount,
  );
}