IVR Software Library
IVR Library Routine Descriptions
The following routine or parameter is maintained in the PACER and WIZARD IVR software library. These routines 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.
ivr_stop_music()
int
ivr_stop_music(int call)
The
ivr_stop_music function stops the music on the specified call.
Parameters
int
|
call
|
Specifies
which call to stop music on.
CALL_PRIMARY: Stop music on the Primary Call
CALL_SECONDARY: Stop music on the Secondary Call
|
Return Value
Returns
IVR_SUCCESS on a successful function call. On error the function returns one
of the IVR Error Codes.
Example
if(ivr_stop_music(CALL_PRIMARY) != IVR_SUCCESS) ...handle error; }
|