extrnl.h

来自「通讯程序源码」· C头文件 代码 · 共 21 行

H
21
字号
/* * 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 + =
减小字号Ctrl + -
显示快捷键?