GetSystemCpuSetInformation method

int GetSystemCpuSetInformation(
  1. Pointer<_SYSTEM_CPU_SET_INFORMATION> Information,
  2. int BufferLength,
  3. Pointer<Uint64> ReturnedLength,
  4. Pointer<Void> Process,
  5. int Flags,
)

Implementation

int GetSystemCpuSetInformation(
  ffi.Pointer<_SYSTEM_CPU_SET_INFORMATION> Information,
  int BufferLength,
  ffi.Pointer<ffi.Uint64> ReturnedLength,
  ffi.Pointer<ffi.Void> Process,
  int Flags,
) {
  return _GetSystemCpuSetInformation(
    Information,
    BufferLength,
    ReturnedLength,
    Process,
    Flags,
  );
}