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_delete_recording()
int
ivr_delete_recording(char *filename)
The
ivr_delete_recording function records the specified call.
Parameters
char *
|
filename
|
The full path name of the recording to delete.
|
Return Value
Return
IVR_SUCCESS on a successful function call. On error the function returns one
of the IVR Error Codes.
Example
if(ivr_delete_recording("D:\\Recording\\Call1.wav") != IVR_SUCCESS){ ...handle error; }
|