📄 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);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -