www.pudn.com > dialogic_IVR.rar > DISPLAY.H


// display.h 
 
/*************************************************************************** 
 *        NAME: disp_status(chnum, stringp) 
 *      INPUTS: chno - channel number (1 - 12) 
 *              stringp - pointer to string to display  
 * DESCRIPTION: display the current activity on the channel in window 2 
 *              (the string pointed to by stringp) using chno as a Y offset 
 *************************************************************************/ 
void disp_status(int chnum, char *stringp); 
 
 
/*************************************************************************** 
 *        NAME: disp_msg(stringp) 
 *      INPUTS: stringp - pointer to string to display. 
 * DESCRIPTION: display the string passed, in the primary message area of win2 
 *************************************************************************/ 
void disp_msg(char *stringp); 
 
 
/*************************************************************************** 
 *        NAME: disp_err( chnum, chfd, state ) 
 * DESCRIPTION: This routine prints error information. 
 *      INPUTS: chnum - channel number (1 - 12) 
 *		chfd - channel descriptor 
 *     OUTPUTS: The error code and error message are displayed 
 *    CAUTIONS: none.  
 ************************************************************************/ 
void disp_err(int chnum, int chfd, int state);