SYSTEM_AIT_SAMPLING_VALUE_INFORMATION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#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;

#endif
#endif

View code on GitHub

NtDoc

No description available.