NDIS_PARAMETER_TYPE enumeration (ndis.h)

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

Syntax

typedef enum _NDIS_PARAMETER_TYPE {
  NdisParameterInteger,
  NdisParameterHexInteger,
  NdisParameterString,
  NdisParameterMultiString,
  NdisParameterBinary
} NDIS_PARAMETER_TYPE, *PNDIS_PARAMETER_TYPE;

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.

Requirements

Requirement Value
Minimum supported client Supported for NDIS 6.0 and NDIS 5.1 drivers in Windows Vista. Supported for NDIS 5.1 drivers in Windows XP.
Header ndis.h (include Ndis.h)

See also

NDIS_CONFIGURATION_PARAMETER

NdisReadConfiguration