// 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
No description available.
This enumeration is used in the POOL_EXTENDED_PARAMETER structure.
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.