次の方法で共有


NDIS_PARAMETER_TYPE (Compact 2013)

3/26/2014

This enumeration specifies possible data types.

Syntax

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

Values

  • NdisParameterInteger
    Specifies an integer in decimal notation.
  • NdisParameterHexInteger
    Specifies an integer in hexadecimal notation.
  • NdisParameterString
    Specifies a string of type NDIS_STRING.
  • NdisParameterMultiString
    Specifies a multistring parameter of the REG_MULTI_SZ type.
  • NdisParameterBinary
    Specifies a binary parameter.

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

Header

ndis.h

See Also

Reference

NDIS Configuration Interface
NdisReadConfiguration
NDIS_CONFIGURATION_PARAMETER