#ifndef _NTRTL_H
// rev
/**
* Retrieves the processor group and number of the logical processor in which the calling thread is running.
*
* @param ProcessorNumber A pointer to a PROCESSOR_NUMBER structure that receives the processor group and number of the logical processor the calling thread is running.
* @return This function does not return a value.
* @sa https://learn.microsoft.com/en-us/windows/win32/api/processthreadsapi/nf-processthreadsapi-getcurrentprocessornumberex
*/
NTSYSAPI
VOID
NTAPI
RtlGetCurrentProcessorNumberEx(
_Out_ PPROCESSOR_NUMBER ProcessorNumber
);
View code on GitHub
No description available.