MEMORY_WORKING_SET_EX_LOCATION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#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;

#endif

View code on GitHub

NtDoc

No description available.