#ifndef _NTEXAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
// private
/**
* Used by SystemAitSamplingValue.
*
* AIT refers to Application Impact Telemetry.
*
* NtSetSystemInformation(SystemAitSamplingValue, ...) expects a 4-byte value
* and mirrors it into KUSER_SHARED_DATA.AitSamplingValue.
*/
typedef struct _SYSTEM_AIT_SAMPLING_VALUE_INFORMATION
{
ULONG AitSamplingValue;
} SYSTEM_AIT_SAMPLING_VALUE_INFORMATION, *PSYSTEM_AIT_SAMPLING_VALUE_INFORMATION;
View code on GitHubNo description available.