display.h

来自「基于dialogic语音卡的IVR系统源代码」· C头文件 代码 · 共 31 行

H
31
字号
// 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);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?