GetSystemCpuSetInformation method
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 ??= _dylib.lookupFunction<
_c_GetSystemCpuSetInformation,
_dart_GetSystemCpuSetInformation>('GetSystemCpuSetInformation'))(
Information,
BufferLength,
ReturnedLength,
Process,
Flags,
);
}