home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume4 / nrtable / term.h < prev   
Encoding:
C/C++ Source or Header  |  1986-11-30  |  800 b   |  64 lines

  1. #ifndef    INCH
  2. #define    INCH    240
  3. #endif
  4.  
  5. struct t {
  6.     int bset;
  7.     int breset;
  8.     int Hor;
  9.     int Vert;
  10.     int Newline;
  11.     int Char;
  12.     int Em;
  13.     int Halfline;
  14.     int Adj;
  15.     char *twinit;
  16.     char *twrest;
  17.     char *twnl;
  18.     char *hlr;
  19.     char *hlf;
  20.     char *flr;
  21.     char *bdon;
  22.     char *bdoff;
  23.     char *iton;
  24.     char *itoff;
  25.     char *ploton;
  26.     char *plotoff;
  27.     char *up;
  28.     char *down;
  29.     char *right;
  30.     char *left;
  31.     char *codetab[256-32];
  32.     char *zzz;
  33.     };
  34.  
  35. struct t_stor {        /* This structure will be stored in the tab file */
  36.     int bset;
  37.     int breset;
  38.     int Hor;
  39.     int Vert;
  40.     int Newline;
  41.     int Char;
  42.     int Em;
  43.     int Halfline;
  44.     int Adj;
  45.     int twinit;
  46.     int twrest;
  47.     int twnl;
  48.     int hlr;
  49.     int hlf;
  50.     int flr;
  51.     int bdon;
  52.     int bdoff;
  53.     int iton;
  54.     int itoff;
  55.     int ploton;
  56.     int plotoff;
  57.     int up;
  58.     int down;
  59.     int right;
  60.     int left;
  61.     int codetab[256-32];
  62.     int zzz;
  63. };
  64.