IVR Software Library
IVR Library Routine Descriptions
The following routine or parameter is maintained in the PACER and WIZARD IVR software library. These routines are developed for programmers who are creating and managing IVR application programs.
IVR programs can be written in C/C++ on Windows, Unix and Linux operating environments.
ivr_connect_calls()
int
ivr_connect_calls()
The
ivr_connect_calls function connects the IVR's primary and secondary
calls.
Parameters
This
function take no parameters.
Return Value
Return
IVR_SUCCESS on a successful function call. On error the function returns one
of the IVR Error Codes.
Example
if(ivr_dial("15555556666") != IVR_SUCCESS){ ...handle error; } if(ivr_connect_calls() != IVR_SUCCESS){ ...handle error; } ivr_terminate(NO_DROP,CALL_NONE);
|