POOL_CREATE_EXTENDED_PARAMETER_TYPE - NtDoc

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

NtDoc

No description available.

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

Description

The POOL_CREATE_EXTENDED_PARAMETER_TYPE enumeration identifies the kind of data present in a POOL_CREATE_EXTENDED_PARAMETER entry.

Constants

PoolCreateExtendedParameterInvalidType

Using this value in a parameter causes ExCreatePool to fail with STATUS_INVALID_PARAMETER_3.

PoolCreateExtendedParameterName

Specifies 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.

Remarks

Future versions of Windows may introduce additional parameter types. Drivers constructing a parameters array must not include duplicate types.

See also

ExCreatePool

POOL_CREATE_EXTENDED_PARAMETER

POOL_CREATE_EXTENDED_PARAMS