- DWORD adiPlaceSecondCall( CTAHD ctahd,
char *digitstr,
ADI_PLACECALL_PARMS *parms )
- ctahd Context handle returned by adiOpenPort.
- digitstr Address of the party to transfer to (e.g., the party's extension).
- parms Pointer to an ADI_PLACECALL_PARMS structure shown below (NULL uses default parameter values):
typedef struct
{ /* passed with adiStartProtocol() */
DWORD size; /* size of this structure */
DWORD connectmask;
/* events that transition to connected: */
DWORD disconnectmask;
/* events that transition to disconnected: */
ADI_CALLPROG_PARMS callprog;
/* call progress analysis parameters */
} ADI_PLACECALL_PARMS;
- For the ADI_CALLPROG_PARM structure, see the function adiStartCallProgress. See Appendix D for more details and default values.