home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / TELECOM / OS9_Unix.lzh / DEFS / terminfo.h < prev    next >
Text File  |  1992-09-01  |  3KB  |  79 lines

  1. /*********************************************************************
  2. *                         COPYRIGHT NOTICE                           * 
  3. ********************************************************************** 
  4. *        This software is copyright (C) 1982 by Pavel Curtis         * 
  5. *                                                                    * 
  6. *        Permission is granted to reproduce and distribute           * 
  7. *        this file by any means so long as no fee is charged         * 
  8. *        above a nominal handling fee and so long as this            * 
  9. *        notice is always included in the copies.                    * 
  10. *                                                                    * 
  11. *        Other rights are reserved except as explicitly granted      * 
  12. *        by written permission of the author.                        * 
  13. *                Pavel Curtis                                        * 
  14. *                Computer Science Dept.                              * 
  15. *                405 Upson Hall                                      * 
  16. *                Cornell University                                  * 
  17. *                Ithaca, NY 14853                                    * 
  18. *                                                                    * 
  19. *                Ph- (607) 256-4934                                  * 
  20. *                                                                    * 
  21. *                Pavel.Cornell@Udel-Relay   (ARPAnet)                * 
  22. *                decvax!cornell!pavel       (UUCPnet)                * 
  23. *********************************************************************/ 
  24.  
  25. /*
  26.  *  $Header:   RCS/terminfo.v  Revision 2.1  82/10/25  14:49:59  pavel  Exp$
  27.  * 
  28.  *    terminfo.h - those things needed for programs runnning at the
  29.  *            terminfo level.  
  30.  * 
  31.  *  $Log:    RCS/terminfo.v $  
  32. Revision 2.1  82/10/25  14:49:59  pavel
  33. Added Copyright Notice 
  34.  
  35. Revision 2.0  82/10/24  15:18:26  pavel
  36. Beta-one Test Release  
  37.  
  38. Revision 1.4  82/08/23  22:31:21  pavel
  39. The REAL Alpha-one Release Version 
  40.  
  41. Revision 1.3  82/08/19  19:24:11  pavel
  42. Alpha Test Release One 
  43.  
  44. Revision 1.2  82/08/19  19:10:56  pavel
  45. Alpha Test Release One 
  46.  
  47. Revision 1.1  82/08/15  16:42:20  pavel
  48. Initial revision
  49.  
  50.  * 
  51.  */
  52.  
  53. #ifndef A_STANDOUT 
  54.  
  55. #include <sgstat.h>
  56. #define SGTTY    struct sgbuf
  57.  
  58.     /* Video attributes */ 
  59. #define A_NORMAL    0000000
  60. #define A_ATTRIBUTES    0377600
  61. #define A_CHARTEXT    0000177  
  62.  
  63. #define A_STANDOUT    0000200  
  64. #define A_UNDERLINE    0000400 
  65.  
  66. #ifndef MINICURSES 
  67. #  define A_REVERSE    0001000 
  68. #  define A_BLINK    0002000
  69. #  define A_DIM        0004000 
  70. #  define A_BOLD    0010000
  71. #  define A_INVIS    0020000
  72. #  define A_PROTECT    0040000 
  73. #  define A_ALTCHARSET    0100000  
  74. #endif MINICURSES  
  75.  
  76. extern char    ttytype[];  
  77. #define NAMESIZE    256
  78. #endif 
  79.