#ifndef _NTPSAPI_H
/**
* The PROCESS_PRIORITY_CLASS structure is used to manage the priority class of a process.
*/
typedef struct _PROCESS_PRIORITY_CLASS
{
BOOLEAN Foreground;
UCHAR PriorityClass;
} PROCESS_PRIORITY_CLASS, *PPROCESS_PRIORITY_CLASS;
View code on GitHub
No description available.