NDIS_TAPI_SELECT_EXT_VERSION (Windows Embedded CE 6.0)

1/6/2010

OID_TAPI_SELECT_EXT_VERSION uses the NDIS_TAPI_SELECT_EXT_VERSION structure when it requests the miniport driver to select the indicated extension version for the indicated line device. Subsequent requests on the line operate according to the selected extension version.

Support for this request is optional.

Syntax

typedef struct _NDIS_TAPI_SELECT_EXT_VERSION { 
  ULONG ulRequestID; 
  HDRV_LINE hdLine; 
  ULONG ulExtVersion; 
} NDIS_TAPI_SELECT_EXT_VERSION, *PNDIS_TAPI_SELECT_EXT_VERSION; 

Members

  • ulRequestID
    [in] Reserved.
  • hdLine
    [in] Specifies the handle to the line for which the extension version is to be selected.
  • ulExtVersion
    [in] Specifies the extension version to be selected. The most significant two bytes specify the major version number, and the least significant two bytes specify the minor version number. Zero indicates the miniport driver should cancel the current selection.

    This version has been negotiated in a preceding OID_TAPI_NEGOTIATE_EXT_VERSION request.

Remarks

The MiniportSetInformation function can return one of the following:

  • NDIS_STATUS_SUCCESS
  • NDIS_STATUS_PENDING
  • NDIS_STATUS_TAPI_INCOMPATIBLEEXTVERSION
  • NDIS_STATUS_TAPI_OPERATIONUNAVAIL
  • NDIS_STATUS_TAPI_RESOURCEUNAVAIL
  • NDIS_STATUS_FAILURE

Requirements

Header ndistapi.h, ntddndis.h
Windows Embedded CE Windows CE .NET 4.0 and later

See Also

Reference

NDIS Structures
OID_TAPI_SELECT_EXT_VERSION
OID_TAPI_NEGOTIATE_EXT_VERSION
MiniportSetInformation