422 Voice API for Windows Operating Systems Library Reference — November 2003
dx_TSFStatus( ) — return the status of tone set file loading
EDX_FEATUREDISABLED
The TSF feature is disabled in the configuration manager (DCM).
!
!!
!Example
/*$ dx_TSFStatus( ) example $*/
#include <stdio.h>
#include <dxxxlib.h>
main ( )
{
int rc;
rc = dx_TSFStatus ( );
switch ( rc )
{
case 0:
break;
case EDX_SYSTEM:
printf ( "General system error loading PBXpert.DLL \n");
break;
case EDX_BADREGVALUE:
printf ( "Cannot find PBX Expert registry entry\n");
break;
case EDX_BADTSFFILE:
printf ( "Downloadable filename in registry invalid or does not exist \n");
break;
case EDX_BADTSFDATA:
printf ("Downloadable TSF file does not contain valid consolidated data\n");
break;
case EDX_FEATUREDISABLED:
printf ("TSF feature is disabled in Intel Dialogic Configuration Manager\n");
break;
default:
break;
}
}
!
!!
!See Also
dx_initcallp( )