NDIS_TAPI_DIAL (Windows CE 5.0)

Send Feedback

OID_TAPI_DIAL uses the NDIS_TAPI_DIAL structure when it requests the miniport driver to dial the specified number on the specified call.

Support for this request is optional.

typedef struct _NDIS_TAPI_DIAL {   ULONGulRequestID;  HDRV_CALLhdCall;  ULONGulDestAddressSize;CHARszDestAddress[1];} NDIS_TAPI_DIAL, *PNDIS_TAPI_DIAL; 

Members

  • ulRequestID
    [in] Reserved.
  • hdCall
    [in] Specifies the miniport driver's handle to the call for which it should dial. This handle was set up in a preceding OID_TAPI_MAKE_CALL request.
  • ulDestAddressSize
    [in] Specifies the size in bytes of the address in the next member.
  • szDestAddress
    [in] Specifies the destination to be dialed in standard dialable number format.

Remarks

The MiniportSetInformation function can return one of the following:

  • NDIS_STATUS_SUCCESS
  • NDIS_STATUS_PENDING
  • NDIS_STATUS_TAPI_INVALCALLHANDLE
  • NDIS_STATUS_TAPI_INVALADDRESS
  • NDIS_STATUS_TAPI_INVALCALLSTATE
  • NDIS_STATUS_TAPI_ADDRESSBLOCKED
  • NDIS_STATUS_TAPI_DIALBILLING
  • NDIS_STATUS_TAPI_DIALQUIET
  • NDIS_STATUS_TAPI_DIALDIALTONE
  • NDIS_STATUS_TAPI_DIALPROMPT
  • NDIS_STATUS_TAPI_OPERATIONUNAVAIL
  • 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_DIAL | MiniportSetInformation | OID_TAPI_MAKE_CALL

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.