360 Voice API for Windows Operating Systems Library Reference — November 2003
dx_resume( ) — resume paused play
!
!!
!Example
#include <srllib.h>
#include <dxxxlib.h>
main()
{
int lDevHdl;
DX_IOTT iott;
/* Open a voice channel */
int lDevHdl = dx_open("dxxxB1C1", 0);
/* Start playing a prompt */
DX_IOTT iott;
/* Fill in the iott structure for the play */
.
.
.
/* Start playing */
if( dx_playiottdata(lDevHdl, &iott, NULL, NULL, EV_ASYNC) < 0)
{
/* process error */
}
/* Pause the play */
if( dx_pause(lDevHdl) <0 )
{
/* process error */
}
/* Start the paused play again */
if_dx_resume(lDevHdl) < 0)
{
/* process error */
}
.
.
.
}
!
!!
!See Also
dx_pause( )