#ifndef _NTMMAPI_H
/**
* The MEMORY_WORKING_SET_EX_LOCATION enumeration describes where a page is located
* when returned through extended working-set information.
*/
// private
typedef enum _MEMORY_WORKING_SET_EX_LOCATION
{
MemoryLocationInvalid,
MemoryLocationResident,
MemoryLocationPagefile,
MemoryLocationReserved
} MEMORY_WORKING_SET_EX_LOCATION;
View code on GitHubNo description available.