SYSTEM_PRIORITY_SEPARATION_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)

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;

#endif
#endif

View code on GitHub

NtDoc

No description available.