#ifndef _NTWMI_H
//
// 2 byte PerfCSwapIdleShort data: Idle thread switching out with small time delta
//
// 0 2 15
// |--|--------------|
// type|short time delta
//
typedef struct _PERFINFO_CCSWAP_IDLE_SHORT
{
USHORT DataType : PERFINFO_CCSWAP_BIT_TYPE;
USHORT TimeDelta : PERFINFO_CCSWAP_BIT_SHORT_TS;
} PERFINFO_CCSWAP_IDLE_SHORT, *PPERFINFO_CCSWAP_IDLE_SHORT;
View code on GitHub
No description available.