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_extn()
int
ivr_connect_extn(int extension)
The
ivr_connect_extn function connects the call to the extension specified
in extension.
Parameters
int
|
extension
|
Extension in which the call should be connected.
|
Return Value
Return
IVR_SUCCESS on a successful function call. On error the function returns one
of the IVR Error Codes.
Example
if(ivr_connect_extn(123) != IVR_SUCCESS){ ...handle error; }
|