#ifndef _NTRTL_H
#if (PHNT_VERSION >= PHNT_WINDOWS_10)
// rev
/**
* Determines whether the specified processor feature is supported by the current computer.
*
* @param ProcessorFeature The processor feature to be tested.
* @return If the feature is supported, the return value is a nonzero value.
* @sa https://learn.microsoft.com/en-us/windows/win32/api/processthreadsapi/nf-processthreadsapi-isprocessorfeaturepresent
*/
NTSYSAPI
BOOLEAN
NTAPI
RtlIsProcessorFeaturePresent(
_In_ ULONG ProcessorFeature
);
View code on GitHub
No description available.