home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume4 / unaxcess / part1 / sys.h < prev    next >
Encoding:
C/C++ Source or Header  |  1986-11-30  |  1.1 KB  |  31 lines

  1. /*
  2.  * %W% %E% %U% ncoast!bsa %Z%
  3.  * %Z% Copyright (C) 1985 by Brandon S. Allbery, All Rights Reserved %Z%
  4.  */
  5.  
  6. struct sys {
  7.     char ua_home[50];    /* UNaXcess lives here */
  8.     char ua_roc;    /* read-only conference flag */
  9.     char ua_xrc;    /* x-rated conference flag */
  10.     char ua_edit[50];    /* the default editor */
  11.     char ua_shell[50];    /* the default shell */
  12.     char ua_env;    /* read environment for SHELL, EDITOR */
  13.     char ua_bbs[32];    /* name of BBS login */
  14.     char ua_tlimit;    /* minutes until logout */
  15.     char ua_sysop[32];    /* name of the sysop login */
  16.     char ua_pm;    /* allow private messages? */
  17.     char ua_log;    /* keep a log? */
  18.     char ua_bnr[50];    /* path of banner file, EOS = internal */
  19.     char ua_login[80];    /* login message, EOS = internal */
  20.     char ua_hco;    /* hard-copy-output mode enable */
  21.     char ua_nla;    /* number of attempts to login allowed */
  22.     char ua_auc[80];    /* ascii upload command */
  23.     char ua_adc[80];    /* ascii download command */
  24.     char ua_xuc[80];    /* Xmodem upload command */
  25.     char ua_xdc[80];    /* Xmodem download command */
  26.     char ua_kuc[80];    /* Kermit upload command */
  27.     char ua_kdc[80];    /* Kermit download command */
  28. };
  29.  
  30. extern struct sys parms;
  31.