PROCESS_WORKING_SET_OPERATION - 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_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;

#endif
#endif

View code on GitHub

NtDoc

No description available.