#ifndef _NTEXAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
typedef struct _SYSTEM_PRIORITY_SEPARATION_INFORMATION
{
union
{
ULONG PrioritySeparation;
struct
{
ULONG PrioritySeparationValue : 2;
ULONG QuantumType : 2;
ULONG ForegroundQuantum : 2;
ULONG Reserved : 26;
};
};
} SYSTEM_PRIORITY_SEPARATION_INFORMATION, *PSYSTEM_PRIORITY_SEPARATION_INFORMATION;
View code on GitHubNo description available.