GetLogicalProcessorInformation function kernel32

int GetLogicalProcessorInformation(
  1. Pointer<SYSTEM_LOGICAL_PROCESSOR_INFORMATION> Buffer,
  2. Pointer<Uint32> ReturnedLength
)

Retrieves information about logical processors and related hardware.

BOOL GetLogicalProcessorInformation(
  PSYSTEM_LOGICAL_PROCESSOR_INFORMATION Buffer,
  PDWORD ReturnedLength
);

Implementation

int GetLogicalProcessorInformation(
  Pointer<SYSTEM_LOGICAL_PROCESSOR_INFORMATION> Buffer,
  Pointer<Uint32> ReturnedLength,
) => _GetLogicalProcessorInformation(Buffer, ReturnedLength);