The GetProcessPriorityBoost function returns the priority boost control state of the specified process.
BOOL GetProcessPriorityBoost(
HANDLE hProcess, // handle to process
PBOOL pDisablePriorityBoost
// indicates priority boost control state
);
If the function succeeds, the return value is nonzero. In that case, the Boolean variable pointed to by the pDisablePriorityBoost parameter receives the priority boost control state.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
Windows NT: Requires version 4.0 or later.
Windows: Unsupported.
Windows CE: Unsupported.
Header: Declared in winbase.h.
Import Library: Use kernel32.lib.
Processes and Threads Overview, Process and Thread Functions, SetProcessPriorityBoost