NDIS_PARAMETER_TYPE - NtDoc

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

typedef enum _NDIS_PARAMETER_TYPE {
  NdisParameterInteger,
  NdisParameterHexInteger,
  NdisParameterString,
  NdisParameterMultiString,
  NdisParameterBinary
} NDIS_PARAMETER_TYPE, *PNDIS_PARAMETER_TYPE;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-configurationparameter-ndis_parameter_type)

_NDIS_PARAMETER_TYPE enumeration

Description

The NDIS_PARAMETER_TYPE enumeration type identifies the type of a registry entry.

Constants

NdisParameterInteger

An integer in decimal notation.

NdisParameterHexInteger

An integer in hexadecimal notation.

NdisParameterString

A string of type NDIS_STRING.

NdisParameterMultiString

A multistring parameter of the REG_MULTI_SZ type.

NdisParameterBinary

A binary value of type REG_BINARY.

Remarks

The NDIS_PARAMETER_TYPE enumeration type is used in the NDIS_CONFIGURATION_PARAMETER structure and in the ParameterType parameter of the NdisReadConfiguration function.

See also

NDIS_CONFIGURATION_PARAMETER

NdisReadConfiguration