POOL_EXTENDED_PARAMETER_TYPE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdm.h

typedef enum POOL_EXTENDED_PARAMETER_TYPE {
  PoolExtendedParameterInvalidType = 0,
  PoolExtendedParameterPriority,
  PoolExtendedParameterSecurePool,
  PoolExtendedParameterNumaNode,
  PoolExtendedParameterMax
}  *PPOOL_EXTENDED_PARAMETER_TYPE;

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-wdm-pool_extended_parameter_type)

Description

This enumeration is used in the POOL_EXTENDED_PARAMETER structure.

Constants

PoolExtendedParameterInvalidType:0

Invalid extended parameter type. Do not use.

PoolExtendedParameterPriority

The extended parameter specifies the priority of the pool allocation using the Priority field of the POOL_EXTENDED_PARAMETER structure.

PoolExtendedParameterSecurePool

The extended parameter specifies the secure pool parameters of the pool allocation using the SecurePoolParams field of the POOL_EXTENDED_PARAMETER structure.

PoolExtendedParameterNumaNode

The extended parameter specifies the preferred NUMA node of the pool allocation using the PreferredNode field of the POOL_EXTENDED_PARAMETER structure.

PoolExtendedParameterMax

For internal use only.

Remarks

See also

ExAllocatePool3