📄 extrnl.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 + -