// 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 referenceNo description available.
The NDIS_PARAMETER_TYPE enumeration type identifies the type of a registry entry.
NdisParameterIntegerAn integer in decimal notation.
NdisParameterHexIntegerAn integer in hexadecimal notation.
NdisParameterStringA string of type NDIS_STRING.
NdisParameterMultiStringA multistring parameter of the REG_MULTI_SZ type.
NdisParameterBinaryA binary value of type REG_BINARY.
The NDIS_PARAMETER_TYPE enumeration type is used in the NDIS_CONFIGURATION_PARAMETER structure and in the ParameterType parameter of the NdisReadConfiguration function.