📄 minicom.h
字号:
/* * This file is part of the Minicom Communications Program, * written by Miquel van Smoorenburg 1991/1992/1993. * * minicom.h - constants, defaults, globals etc. */#include "config.h"#define A_OK_EXIST 1#define A_OK_NOTEXIST 2/* This one's for Coherent 3. What about Coherent 4 ? */#ifdef _COH3# include <access.h># define W_OK AWRITE# define R_OK AREAD#endif/* And for ancient systems like SVR2 */#ifndef W_OK# define W_OK 2# define R_OK 4#endif#ifndef SEEK_SET# define SEEK_SET 0# define SEEK_END 2#endif#ifndef NSIG# define NSIG 31#endif#ifndef EXTERN# define EXTERN extern#endifEXTERN char stdattr; /* Standard attribute */EXTERN WIN *us; /* User screen */EXTERN WIN *st; /* Status Line */EXTERN int real_uid; /* Real uid */EXTERN int real_gid; /* Real gid */EXTERN short terminal; /* terminal type */EXTERN time_t online; /* Time online in minutes */EXTERN short portfd; /* File descriptor of the serial port. */EXTERN short lines; /* Nr. of lines on the screen */EXTERN short cols; /* Nr. of cols of the screen */EXTERN int keypadmode; /* Mode of keypad */EXTERN int cursormode; /* Mode of cursor (arrow) keys */EXTERN int docap; /* Capture data to capture file */EXTERN FILE *capfp; /* File to capture to */EXTERN int addlf; /* Add LF after CR */EXTERN int linewrap; /* Also known as automatic margins */EXTERN int tempst; /* Status line is temporary */EXTERN int escape; /* Escape code. */EXTERN char lockfile[128]; /* UUCP lock file of terminal */EXTERN char homedir[256]; /* Home directory of user */EXTERN char username[16]; /* Who is using minicom? */EXTERN int bogus_dcd; /* This indicates the dcd status if no 'real' dcd */EXTERN int alt_override;/* -m option */EXTERN char parfile[256]; /* Global parameter file */EXTERN char pparfile[256]; /* Personal parameter file */EXTERN char scr_name[33]; /* Name of last script */EXTERN char scr_user[33]; /* Login name to use with script */EXTERN char scr_passwd[33]; /* Password to use with script */EXTERN char termtype[32]; /* Value of getenv("TERM"); */EXTERN int portuid, portgid; /* Uid and Gid of /dev/ttyS... */EXTERN char *dial_name; /* System we're conneced to */EXTERN char *dial_number; /* Number we've dialed. */EXTERN int size_changed; /* Window size has changed */extern char *Version; /* Minicom verson */#if _SELECTEXTERN int local_echo; /* Local echo on/off. */#endif/* Global functions */#ifndef _PROTO# if __STDC__# define _PROTO(fun, args) fun args# else# define _PROTO(fun, args) fun()# endif#endif/* Prototypes from file: " config.c " */_PROTO(void read_parms, ( void ));_PROTO(int waccess, ( char *s ));_PROTO(int config, ( int setup ));_PROTO(void get_bbp, ( char *ba , char *bi , char *pa ));_PROTO(char *yesno, ( int k ));/* Prototypes from file: " dial.c " */_PROTO(void mputs, ( char *s ));_PROTO(void modeminit, ( void ));_PROTO(void modemreset, ( void ));_PROTO(void hangup, ( void ));_PROTO(void sendbreak, ( void ));_PROTO(int dial, ( char *name , char *num , int keypress , int dialtype ));_PROTO(int readdialdir, ( void ));_PROTO(void dialdir, ( void ));/* Prototypes from file: " fastsystem.c " */_PROTO(int fastexec, ( char *cmd ));_PROTO(int fastsystem, ( char *cmd , char *in , char *out , char *err ));/* Prototypes from file: " help.c " */_PROTO(int help, ( void ));/* Prototypes from file: " ipc.c " */_PROTO(int check_io, ( int fd1, int fd2, int tmout, char *buf , int *buflen ));_PROTO(int keyboard, ( int cmd , int arg ));/* Prototypes from file: " keyserv.c " */_PROTO(void handler, ( int dummy ));_PROTO(void sendstr, ( char *s ));_PROTO(int main, ( int argc , char **argv ));/* Prototypes from file: " main.c " */_PROTO(char *basename, ( char *s ));_PROTO(void leave, ( char *s ));_PROTO(char *esc_key, ( void ));_PROTO(int open_term, ( int doinit ));_PROTO(void init_emul, ( int type ));_PROTO(void mode_status, ( void ));_PROTO(void time_status, ( void ));_PROTO(void curs_status, ( void ));_PROTO(void show_status, ( void ));_PROTO(void scriptname, ( char *s ));_PROTO(int do_terminal, ( void ));/* Prototypes from file: " rwconf.c " */_PROTO(int writepars, ( FILE *fp , int all ));_PROTO(int readpars, ( FILE *fp , int init ));/* Prototypes from file: " sysdep1.c " */_PROTO(void m_dtrtoggle, ( int fd ));_PROTO(void m_break, ( int fd ));_PROTO(int m_getdcd, ( int fd ));_PROTO(void m_setdcd, ( int fd , int what ));_PROTO(void m_savestate, ( int fd ));_PROTO(void m_restorestate, ( int fd ));_PROTO(void m_nohang, ( int fd ));_PROTO(void m_hupcl, ( int fd, int on ));_PROTO(void m_flush, ( int fd ));_PROTO(void m_setparms, ( int fd , char *baudr , char *par , char *bits ));_PROTO(int m_wait, ( int *st ));/* Prototypes from file: " sysdep2.c " */_PROTO(void getrowcols, ( int *rows , int *cols ));_PROTO(int setcbreak, ( int mode ));_PROTO(void enab_sig, ( int onoff ));#if 0 /* Only if you don't have it already */_PROTO(char *strtok, ( char *s , char *delim ));#endif#ifdef _SVR2_PROTO(int dup2, ( int from, int to ));#endif/* Prototypes from file: " updown.c " */_PROTO(void updown, ( int what ));_PROTO(int mc_setenv, (char *, char *));_PROTO(void kermit, ( void ));_PROTO(void runscript, ( int ask, char *s , char *l , char *p ));/* Prototypes from file: " windiv.c " *//* Should use stdarg et al. */WIN *tell();void werror();_PROTO(int ask, ( char *what , char *s []));_PROTO(char *input, ( char *s , char *buf ));/* Prototypes from file: " wkeys.c " */_PROTO(int getch, ( void ));
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -