Share via


NDIS_TAPI_GET_CALL_STATUS (Windows Embedded CE 6.0)

1/6/2010

The NDIS_TAPI_GET_CALL_STATUS structure is used by OID_TAPI_GET_CALL_STATUS when it requests the miniport driver to return the status of the specified call.

Support for this request is mandatory.

Syntax

typedef struct _NDIS_TAPI_GET_CALL_STATUS { 
  ULONG ulRequestID; 
  HDRV_CALL hdCall; 
  OUT LINE_CALL_STATUS LineCallStatus; 
} NDIS_TAPI_GET_CALL_STATUS, *PNDIS_TAPI_GET_CALL_STATUS; 

Members

  • ulRequestID
    [in] Reserved.
  • hdCall
    [in] Specifies the miniport driver's handle to the call for which the current status should be returned.
  • LineCallStatus
    [out] Specifies the virtual address of a variable-size structure of type LINE_CALL_STATUS.

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

    The structure at LineCallStatus has at least sizeof(LINE_CALL_STATUS) bytes reserved.

Remarks

The MiniportQueryInformation function can return one of the following:

  • NDIS_STATUS_SUCCESS
  • NDIS_STATUS_PENDING
  • NDIS_STATUS_TAPI_INVALCALLHANDLE
  • 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_GET_CALL_STATUS
MiniportQueryInformation