// wdm.h
typedef enum _POOL_CREATE_EXTENDED_PARAMETER_TYPE {
PoolCreateExtendedParameterInvalidType,
PoolCreateExtendedParameterName
} POOL_CREATE_EXTENDED_PARAMETER_TYPE, *PPOOL_CREATE_EXTENDED_PARAMETER_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
The POOL_CREATE_EXTENDED_PARAMETER_TYPE enumeration identifies the kind of data present in a POOL_CREATE_EXTENDED_PARAMETER entry.
PoolCreateExtendedParameterInvalidTypeUsing this value in a parameter causes ExCreatePool to fail with STATUS_INVALID_PARAMETER_3.
PoolCreateExtendedParameterNameSpecifies that the parameter supplies a pool name through the PoolName member of the union in POOL_CREATE_EXTENDED_PARAMETER. Required for paged and nonpaged private pools. Not permitted for secure pools.
Future versions of Windows may introduce additional parameter types. Drivers constructing a parameters array must not include duplicate types.
POOL_CREATE_EXTENDED_PARAMETER