home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume8 / qterm / table.c < prev   
Encoding:
C/C++ Source or Header  |  1987-03-02  |  2.3 KB  |  72 lines

  1. #ifndef lint
  2. static char *RCSid = "$Header: table.c,v 1.3 86/11/13 15:40:26 mcooper Locked $";
  3. #endif
  4.  
  5. /*
  6.  *------------------------------------------------------------------
  7.  *
  8.  * $Source: /big/mcooper/src/qterm/RCS/table.c,v $
  9.  * $Revision: 1.3 $
  10.  * $Date: 86/11/13 15:40:26 $
  11.  * $State: Exp $
  12.  * $Author: mcooper $
  13.  * $Locker: mcooper $
  14.  *
  15.  *------------------------------------------------------------------
  16.  *
  17.  * Michael A. Cooper
  18.  * University Computing Services, 
  19.  * University of Southern California
  20.  * (mcooper@usc-oberon.arpa)
  21.  *
  22.  *------------------------------------------------------------------
  23.  * $Log:    table.c,v $
  24.  * Revision 1.3  86/11/13  15:40:26  mcooper
  25.  * z29 -> h29.  "h29" is recognized
  26.  * more.
  27.  * 
  28.  * Revision 1.2  86/07/01  23:13:04  mcooper
  29.  * Added vt220 and f220 entries.
  30.  * 
  31.  * Revision 1.1  86/07/01  22:58:12  mcooper
  32.  * Initial revision
  33.  * 
  34.  *------------------------------------------------------------------
  35.  */
  36.  
  37. #include <stdio.h>
  38.  
  39. /*
  40.  * The Master Table
  41.  */
  42. char *terms[] = {
  43. /*  Terminal Sends:            Terminal Name:     Real Name:         */
  44. /*    ---------------            --------------     ----------         */
  45.     "\33[?1;0c",            "vt100",        "Base vt100",
  46.     "\33[?1;1c",            "vt100",        "vt100 with STP",
  47.     "\33[?1;2c",            "vt100",        "ANSI/VT100 Clone",
  48.     "\33[?1;3c",            "vt100",        "vt100 with AVO and STP",
  49.     "\33[?1;4c",            "vt100",        "vt100 with GPO",
  50.     "\33[?1;5c",            "vt100",        "vt100 with GPO and STP",
  51.     "\33[?1;6c",            "vt100",        "vt100 with GPO and AVO",
  52.     "\33[?1;7c",            "vt100",        "vt100 with GPO, STP, and AVO",
  53.     "\33[?6c",                "vt100",        "Generic vt100",
  54.     "\33[?8c",                "vt100",        "TeleVideo 970",
  55.     "\33[0n",                "vt100",        "AT&T Unix PC 7300",
  56.     "\33[?l;0c",            "vt100",        "AT&T Unix PC 7300",
  57.     "\33[?12c",                "vt100",        "Concept from Pro 350/UNIX",
  58.     "\33[?;c",                "vt100",        "Concept From Pro 350/UNIX",
  59.     "\33[=1;1c",            "avt-4p-s",        "Concept with 4 pages memory",
  60.     "\33[=1;2c",            "avt-8p-s",        "Concept with 8 pages memory",
  61.     "\33iBO",                "h29",            "Zenith z29 in zenith mode",
  62.     "\33/K",                "h29",            "Zenith z29 in zenith mode",
  63.     "\33/Z",                "vt52",            "Generic vt52",
  64.     "\33[?12;7;0;102c",        "vt125",        "DEC Pro 350 in vt125 mode",
  65.     "\33[?10c",                "la120",        "DEC Writer III",
  66.     "\33[?1;11c",            "cit101e",        "CIE CIT-101 Enhanced w/Graphics",
  67. /*    "\33[?1;11c",            "xt100+",        "Northern Tech LANPARSCOPE",    */
  68.     "\33[?62;1;2;6;7;8;9c",    "vt220",        "DEC VT220",
  69.     "\33[62;1;2;6;8c",        "f220",            "Freedom 220 DEC clone",
  70.     NULL
  71. };
  72.