⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 status.h

📁 通讯程序源码
💻 H
字号:
/* * The status flags, and other various changeable things. */#define MAX_ROW		64#define MAX_COL		133struct STATUS {	int	dup_fd;			/* fd for duplicating input */	int	cmd_ipc;		/* IPC for shell scripts */	int	connected;		/* are we connected to a remote? */	int	log_status;		/* status of log option */	char	*log_path;		/* data logging file */	int	print_status;		/* status of print option */	int	row;			/* cursor row position */	int	col;			/* cursor column position */	char	vs[MAX_ROW][MAX_COL];	/* the virtual screen */	int	max_row;		/* the virtual screen demensions */	int	max_col;		/* the virtual screen demensions */};#ifndef MAINextern struct STATUS *status;#endif /* MAIN */

⌨️ 快捷键说明

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