PROCESS_RAISE_PRIORITY - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTPSAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)

/**
 * The PROCESS_RAISE_PRIORITY structure is used to raise the priority of a process.
 */
typedef struct _PROCESS_RAISE_PRIORITY
{
    ULONG RaisePriority;
} PROCESS_RAISE_PRIORITY, *PPROCESS_RAISE_PRIORITY;

#endif
#endif

View code on GitHub

NtDoc

No description available.