|
IVR Software Data Types
IVRDIGITS
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 C Data Structures or Error Code declarations used within this library by the phone function routines - IVRDIGITS.
The Data Structure is defined in our C programming library, although there is 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.
IVRDIGITS
typedef struct tag_IvrDigits{
int exit_status;
int digit_count;
char digits[IVR_DIGIT_BUFFER_LENGTH];
}IVRDIGITS;
Structure Members
exit_status
|
The exit_status
field will contain the exit status of the function call.
It will be set to one of the IVR Get Digit
Exit Statuses.
|
digit_count
|
The digit_count
field will contain the number of digits received from the call.
|
digits
|
The digits field
will contain a null terminated string containing the digits returned from the
call.
|
|
|