IVR Software Library
ivr_get_call_info
Database Systems Corp. (DSC) provides an API subroutine library of IVR Software routines that perform phone functions The following is a description of one of the functions within this library that controls the IVR operation - ivr_get_call_info.
The routine is from our C programming library, although this same routine has an equivalent for Visual Basic, .NET, C++ and Active-X. DSC provides a separate user guide for each of these languages.
Contact DSC to obtain the most current IVR manuals in your required programming language.
ivr_get_call_info()
int
ivr_get_call_info(int call, IVRGETCALLINFO
*ivrgci)
The
ivr_get_call_info function retrieves the information for the specified
call.
Parameters
int
|
call
|
Specifies
which call to retrieve data.
CALL_PRIMARY: Primary Call data
CALL_SECONDARY: Secondary Call data
|
IVRGETCALLINFO *
|
ivrgci
|
Structure
of type IVRGETCALLINFO in which the call
information will be returned.
|
Return Value
Return
IVR_SUCCESS on a successful function call. On error the function returns one
of the IVR Error Codes.
Example
IVRGETCALLINFO ivrgci; if(ivr_get_call_info(call, &ivrgci) != IVR_SUCCESS){ ...handle error; }
|