#ifndef _NTPSAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
/**
* The PROCESS_WORKING_SET_OPERATION enumeration defines the operation to perform on a process's working set.
*/
typedef enum _PROCESS_WORKING_SET_OPERATION
{
ProcessWorkingSetSwap, // Swap the working set of a process. // Flags: 0 or 1. // (requires SeDebugPrivilege)
ProcessWorkingSetEmpty, // Empty the working set of a process according to PROCESS_WORKING_SET_CONTROL.Flags.
ProcessWorkingSetOperationMax
} PROCESS_WORKING_SET_OPERATION;
View code on GitHubNo description available.