home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 2 / crawlyvol2.bin / program / c / bts310b5 / video.h < prev    next >
C/C++ Source or Header  |  1991-07-03  |  5KB  |  116 lines

  1. #ifndef H_VIDEO
  2. #define H_VIDEO
  3. /*--------------------------------------------------------------------------*/
  4. /*                                                                          */
  5. /*                                                                          */
  6. /*      ------------         Bit-Bucket Software, Co.                       */
  7. /*      \ 10001101 /         Writers and Distributors of                    */
  8. /*       \ 011110 /          Freely Available<tm> Software.                 */
  9. /*        \ 1011 /                                                          */
  10. /*         ------                                                           */
  11. /*                                                                          */
  12. /*  (C) Copyright 1987-90, Bit Bucket Software Co., a Delaware Corporation. */
  13. /*                                                                          */
  14. /*                                                                          */
  15. /*      IBM PC Line Drawing character definitions used in BinkleyTerm       */
  16. /*                                                                          */
  17. /*                                                                          */
  18. /*    For complete  details  of the licensing restrictions, please refer    */
  19. /*    to the License  agreement,  which  is published in its entirety in    */
  20. /*    the MAKEFILE and BT.C, and also contained in the file LICENSE.240.    */
  21. /*                                                                          */
  22. /*    USE  OF THIS FILE IS SUBJECT TO THE  RESTRICTIONS CONTAINED IN THE    */
  23. /*    BINKLEYTERM  LICENSING  AGREEMENT.  IF YOU DO NOT FIND THE TEXT OF    */
  24. /*    THIS  AGREEMENT IN ANY OF THE  AFOREMENTIONED FILES,  OR IF YOU DO    */
  25. /*    NOT HAVE THESE FILES,  YOU  SHOULD  IMMEDIATELY CONTACT BIT BUCKET    */
  26. /*    SOFTWARE CO.  AT ONE OF THE  ADDRESSES  LISTED BELOW.  IN NO EVENT    */
  27. /*    SHOULD YOU  PROCEED TO USE THIS FILE  WITHOUT HAVING  ACCEPTED THE    */
  28. /*    TERMS  OF  THE  BINKLEYTERM  LICENSING  AGREEMENT,  OR  SUCH OTHER    */
  29. /*    AGREEMENT AS YOU ARE ABLE TO REACH WITH BIT BUCKET SOFTWARE, CO.      */
  30. /*                                                                          */
  31. /*                                                                          */
  32. /* You can contact Bit Bucket Software Co. at any one of the following      */
  33. /* addresses:                                                               */
  34. /*                                                                          */
  35. /* Bit Bucket Software Co.        FidoNet  1:104/501, 1:132/491, 1:141/491  */
  36. /* P.O. Box 460398                AlterNet 7:491/0                          */
  37. /* Aurora, CO 80046               BBS-Net  86:2030/1                        */
  38. /*                                Internet f491.n132.z1.fidonet.org         */
  39. /*                                                                          */
  40. /* Please feel free to contact us at any time to share your comments about  */
  41. /* our software and/or licensing policies.                                  */
  42. /*                                                                          */
  43. /*--------------------------------------------------------------------------*/
  44.  
  45.  
  46. /* single line boxes */
  47. #define VBAR1  179
  48. #define VLINE  179
  49. #define HBAR1  196
  50. #define HLINE  196
  51. #define ULC11  218
  52. #define URC11  191
  53. #define LLC11  192
  54. #define LRC11  217
  55. #define TL11   195
  56. #define TR11   180
  57. #define TT11   194
  58. #define TB11   193
  59. #define X11    197
  60.  
  61. /* double line boxes */
  62. #define VBAR2  186
  63. #define HBAR2  205
  64. #define ULC22  201
  65. #define URC22  187
  66. #define LLC22  200
  67. #define LRC22  188
  68. #define TL22   204
  69. #define TR22   185
  70. #define TT22   203
  71. #define TB22   202
  72. #define X22    206
  73.  
  74. /* single line horizontal and double line vertical boxes */
  75. #define ULC12  214
  76. #define URC12  183
  77. #define LLC12  211
  78. #define LRC12  189
  79. #define TL12   199
  80. #define TR12   182
  81. #define TT12   210
  82. #define TB12   208
  83. #define X12    215
  84.  
  85. /* double line horizontal and single line vertical boxes */
  86. #define ULC21  213
  87. #define URC21  184
  88. #define LLC21  212
  89. #define LRC21  190
  90. #define TL21   198
  91. #define TR21   181
  92. #define TT21   209
  93. #define TB21   207
  94. #define X21    216
  95.  
  96. /* full and partial blocks */
  97. #define BLOCK  219
  98. #define VBAR   219
  99. #define VBARL  221
  100. #define VBARR  222
  101. #define HBART  223
  102. #define HBARB  220
  103.  
  104. /* special graphic symbols */
  105. #define BLANK  32
  106. #define DIAMOND   4
  107. #ifndef __TOS__
  108. #define UPARROW   24
  109. #define DOWNARROW 25
  110. #define RIGHTARROW   26
  111. #define LEFTARROW 27
  112. #endif
  113. #define SLASH  47
  114.  
  115. #endif    /* VIDEO */
  116.