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.
IVRMIXEDPROMPTS
typedef struct tag_IvrMixedPrompts{
int type;
char prompt[IVR_TEXT_LENGTH];
}IVRMIXEDPROMPTS;
Structure Members
type
|
The type field will
contain the type of prompt. It can be one of the following values.
PROMPT_WAVE:The prompt is a wave file.
PROMPT_TEXT:The prompt is text to be spoken.
|
prompt
|
The prompt field
will contains the text to be spoken or the wave file to be played.
|
|