NDIS_TAPI_GET_ADDRESS_STATUS (Windows CE 5.0)

Send Feedback

The NDIS_TAPI_GET_ADDRESS_STATUS structure is used by OID_TAPI_GET_ADDRESS_STATUS when it requests the miniport driver to return the status that is current for the specified address.

Support for this request is mandatory.

typedef struct _NDIS_TAPI_GET_ADDRESS_STATUS {   ULONG ulRequestID;HDRV_LINEhdLine;ULONGulAddressID;OUT LINE_ADDRESS_STATUSLineAddressStatus;} NDIS_TAPI_GET_ADDRESS_STATUS, *PNDIS_TAPI_GET_ADDRESS_STATUS; 

Members

  • ulRequestID
    [in] Reserved.

  • hdLine
    [in] Specifies the miniport driver's handle for the line.

  • ulAddressID
    [in] Specifies an address on the given open line device. This is the address for which the status should be returned. The value of this member is not validated by NDISTAPI when this request is made.

  • LineAddressStatus
    [out] Specifies the virtual address of a variable-size structure of type LINE_ADDRESS_STATUS.

    The miniport driver fills this structure with address status information to complete this request successfully.

    The LineAddressStatus member has at least sizeof**(LINE_ADDRESS_STATUS**) bytes reserved.

Remarks

The MiniportQueryInformation function can return one of the following:

  • NDIS_STATUS_SUCCESS
  • NDIS_STATUS_PENDING
  • NDIS_STATUS_TAPI_INVALLINEHANDLE
  • NDIS_STATUS_TAPI_INVALADDRESSID
  • NDIS_STATUS_TAPI_RESOURCEUNAVAIL
  • NDIS_STATUS_FAILURE

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Ntddndis.h and Ndistapi.h.

See Also

OID_TAPI_GET_ADDRESS_STATUS | MiniportQueryInformation

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.