home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / APPS / dm.lzh / screen.h < prev    next >
Text File  |  1995-03-25  |  972b  |  45 lines

  1. /* screen.h for DISKMASTER.C                  */
  2. /* copyright (c) 1995 by Bob Devries          */
  3. /* email: bdevries@gil.ipswichcity.qld.gov.au */
  4.  
  5. #define     ESC         0x1b
  6.  
  7. /* screen color defs (RGBI) */
  8. # define    BLACK        0
  9. # define    RED            1
  10. # define    GREEN        2
  11. # define    YELLOW        3
  12. # define    BLUE        4
  13. # define    MAGENTA        5
  14. # define    CYAN        6
  15. # define    WHITE        7
  16.  
  17. /* Single-line box outline characters */
  18. # define    VERT_BAR    0xb3
  19. # define    HORZ_BAR    0xc4
  20. # define    TOP_LEFT    0xda
  21. # define    TOP_RITE    0xbf
  22. # define    BOT_LEFT    0xc0
  23. # define    BOT_RITE    0xd9
  24.  
  25.  
  26. # define    DVERT_BAR    0xba
  27. # define    DHORZ_BAR    0xcd
  28. # define    DTOP_LEFT    0xc9
  29. # define    DTOP_RITE    0xbb
  30. # define    DBOT_LEFT    0xc8
  31. # define    DBOT_RITE    0xbc
  32. # define    DBOT_TEE    0xca
  33. # define    DTOP_TEE    0xcb
  34. # define    DLFT_TEE    0xcc
  35. # define    DRIT_TEE    0xb9
  36. # define    TL          0
  37. # define    TR          1
  38. # define    BL          2
  39. # define    BR          3
  40.  
  41. # define    HI_OFF      0
  42. # define    HI_ON       1
  43.  
  44. /* EOF screen.h */
  45.