#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 to disk. // (requires SeDebugPrivilege)
ProcessWorkingSetEmpty, // Remove all pages from the working set of a process.
ProcessWorkingSetEmptyPrivatePages, // Remove private pages from the working set of a process.
ProcessWorkingSetOperationMax
} PROCESS_WORKING_SET_OPERATION;
View code on GitHub
No description available.