Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

This structure specifies a collection of dialing-related fields. Call the lineSetCallParamsfunction or the TSPI_lineSetCallParamsfunction to set parameters for a call using the LINEDIALPARAMSstructure.

Syntax

typedef struct linedialparams_tag {
  DWORD 
dwDialPause; 
  DWORD 
dwDialSpeed; 
  DWORD 
dwDigitDuration; 
  DWORD 
dwWaitForDialtone; 
 } LINEDIALPARAMS, FAR* LPLINEDIALPARAMS; 

Members

dwDialPause

Duration, in milliseconds, of a comma in the dialable address.

dwDialSpeed

Interdigit time period, in milliseconds, between successive digits.

dwDigitDuration

Duration, in milliseconds, of a digit.

dwWaitForDialtone

Maximum amount of time to wait for a dial tone when a 'W' is used in the dialable address.

Remarks

This structure may not be extended.

When a value of zero is specified for a field, the default value for that field is used. If a nonzero value is specified for a field that is outside the range specified by the corresponding fields in MinDialParamsand MaxDialParamsin the LINEDEVCAPSstructure, the nearest value within the valid range is used instead.

The lineMakeCallfunction allows an application to adjust the dialing parameters to be used for the call. The lineSetCallParamsfunction can be used to adjust the dialing parameters of an existing call. The LINECALLINFOstructure lists the call's current dialing parameters.

Requirements

Header tapi.h
Windows Embedded CE Windows CE 1.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also