IVR Software Library
ivr_get_ani_dnis
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_ani_dnis.
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_ani_dnis()
int
ivr_get_ani_dnis(IVRANIDNIS *ivrad)
The
ivr_get_ani_dnis function retrieves the ANI and DNIS information
for the Primary call.
Parameters
IVRANIDNIS *
|
ivrad
|
Structure
of type IVRANIDNIS in which the ANI and DNIS
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
IVRANIDNIS ivrad; if(ivr_get_ani_dnis(&ivrad) != IVR_SUCCESS){ ...handle error; }
|