home *** CD-ROM | disk | FTP | other *** search
- /*
- * The location of the support files, status flags, and other various
- * changeable things.
- */
-
- struct STATUS {
- char *p_path; /* pcomm.param file */
- char *d_path; /* pcomm.dial_dir file */
- char *m_path; /* pcomm.modem file */
- char *lock_path; /* UUCP lock file */
- char *vs_path; /* virtual screen file */
- char *log_path; /* data logging file */
- int fd; /* file descriptor for tty */
- int log; /* status of log option */
- int print; /* status of print option */
- int msg; /* the 'msg' status */
- int pid; /* the pid of the child process */
- };
-
- #ifndef MAIN
- extern struct STATUS *status;
- #endif /* MAIN */
-