home *** CD-ROM | disk | FTP | other *** search
/ ftp.update.uu.se / ftp.update.uu.se.2014.03.zip / ftp.update.uu.se / pub / rainbow / msdos / misc2 / dialv23.lzh / FVCONST.INC < prev    next >
Text File  |  1985-08-03  |  2KB  |  37 lines

  1.  
  2. {********* This file is an "include" file to be used with DIAL.PAS. *********}
  3.  
  4.  
  5.   {Graphics characters for use in fast video calls.  Used to make boxes.}
  6.  
  7.   fm_lrc                 = $0B;   {Lower right corner}
  8.   fm_urc                 = $0C;   {Upper right corner}
  9.   fm_ulc                 = $0D;   {Upper left corner}
  10.   fm_llc                 = $0E;   {Lower left corner}
  11.   fm_cros                = $0F;   {Crossed lines}
  12.   fm_horz                = $12;   {Horizontal bar}
  13.   fm_ltee                = $15;   {Left tee}
  14.   fm_rtee                = $16;   {Right tee}
  15.   fm_btee                = $17;   {Bottom tee}
  16.   fm_ttee                = $18;   {Top tee}
  17.   fm_vert                = $19;   {Verticle bar}
  18.  
  19.   {Attributes for use in fast video calls}
  20.  
  21.   FBold                  : BYTE = 12; {These are the attribute codes for the}
  22.   FReverse               : BYTE = 15; {various combinations of video attributes.}
  23.   FBlink                 : BYTE = 10; {They must be set up as global, so that}
  24.   FUnder                 : BYTE = 6;  {When you call the procedure, you can}
  25.   FNormal                : BYTE = 14; {specify the attributes beforehand.}
  26.   FBoldBlink             : BYTE = 8;
  27.   FBoldUnder             : BYTE = 4;
  28.   FBoldReverse           : BYTE = 13;
  29.   FReverseBlink          : BYTE = 11;
  30.   FReverseUnder          : BYTE = 7;
  31.   FBlinkUnder            : BYTE = 2;
  32.   FBlinkUnderBold        : BYTE = 0;  {missing attribute codes}
  33.   FReverseBlinkUnderBold : BYTE = 1;  {found by trial and error}
  34.   FReverseBlinkUnder     : BYTE = 3;  {so these names}
  35.   FReverseUnderBold      : BYTE = 5;  {may not be official}
  36.   FReverseBlinkBold      : BYTE = 9;  {but the lack of symmetry bothered me}
  37.