home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / clipper / 52capi.zip / BOX.CH < prev    next >
Text File  |  1993-02-15  |  907b  |  31 lines

  1. /***
  2. *
  3. *  Box.ch
  4. *
  5. *  Standard definitions for Clipper box drawing commands
  6. *
  7. *  Copyright (c) 1990-1993, Computer Associates International, Inc.
  8. *  All rights reserved.
  9. *
  10. */
  11.  
  12. // Single-line box
  13. #define    B_SINGLE         ( CHR(218) + CHR(196) + CHR(191) + CHR(179) + ;
  14.                           CHR(217) + CHR(196) + CHR(192) + CHR(179)   )
  15.  
  16. // Double-line box
  17. #define B_DOUBLE        ( CHR(201) + CHR(205) + CHR(187) + CHR(186) + ;
  18.                        CHR(188) + CHR(205) + CHR(200) + CHR(186)   )
  19.  
  20. // Single-line top, double-line sides
  21. #define B_SINGLE_DOUBLE    ( CHR(214) + CHR(196) + CHR(183) + CHR(186) + ;
  22.                           CHR(189) + CHR(196) + CHR(211) + CHR(186)   )
  23.  
  24. // Double-line top, single-line sides
  25. #define    B_DOUBLE_SINGLE    ( CHR(213) + CHR(205) + CHR(184) + CHR(179) + ;
  26.                              CHR(190) + CHR(205) + CHR(212) + CHR(179)   )
  27.  
  28.  
  29. #define _BOX_CH
  30.  
  31.