home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume14 / pcomm / part02 / status.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-05-17  |  631 b   |  23 lines

  1. /*
  2.  * The location of the support files, status flags, and other various
  3.  * changeable things.
  4.  */
  5.  
  6. struct STATUS {
  7.     char    *p_path;        /* pcomm.param file */
  8.     char    *d_path;        /* pcomm.dial_dir file */
  9.     char    *m_path;        /* pcomm.modem file */
  10.     char    *lock_path;        /* UUCP lock file */
  11.     char    *vs_path;        /* virtual screen file */
  12.     char    *log_path;        /* data logging file */
  13.     int    fd;            /* file descriptor for tty */
  14.     int    log;            /* status of log option */
  15.     int    print;            /* status of print option */
  16.     int    msg;            /* the 'msg' status */
  17.     int    pid;            /* the pid of the child process */
  18. };
  19.  
  20. #ifndef MAIN
  21. extern struct STATUS *status;
  22. #endif /* MAIN */
  23.