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

📄 extrnl.h

📁 通讯程序源码
💻 H
字号:
/* * The external file transfer program database.  The list is limited to * 3 uploads and 3 downloads because the xfer_menu() routine uses single * character input (and these selections become 7, 8, and 9). */struct EXTRNL {	char	*name[2][3];		/* program name (for display only) */	char	*command[2][3];		/* the command line */	char	prompt[2][3];		/* need to prompt for names? */	int	up_entries;		/* number of up entries in the file */	int	dn_entries;		/* number of down entries in the file */	char	*e_path;		/* path to the pcomm.extrnl file */};#ifndef MAINextern struct EXTRNL *extrnl;#endif /* MAIN */

⌨️ 快捷键说明

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