GetLogicalProcessorInformation method
int
GetLogicalProcessorInformation(
- Pointer<
PSYSTEM_LOGICAL_PROCESSOR_INFORMATION> Buffer, - Pointer<
Uint64> ReturnedLength
Implementation
int GetLogicalProcessorInformation(
ffi.Pointer<PSYSTEM_LOGICAL_PROCESSOR_INFORMATION> Buffer,
ffi.Pointer<ffi.Uint64> ReturnedLength,
) {
return (_GetLogicalProcessorInformation ??= _dylib.lookupFunction<
_c_GetLogicalProcessorInformation,
_dart_GetLogicalProcessorInformation>(
'GetLogicalProcessorInformation'))(
Buffer,
ReturnedLength,
);
}