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_extc()
int
ivr_connect_extc(char *extension)
The
ivr_connect_extc function connects the call to the extension specified
in extension.
Parameters
char *
|
extension
|
Null terminated string containing the 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_extc("123") != IVR_SUCCESS){ ...handle error; }
|