IVR Software Library
IVR Data Types and Error Codes
The following parameters are maintained in the PACER and WIZARD IVR software library. The routines that reference these parameters 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.
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.
|
|