home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / library / dos / mailpro / colordef.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1988-08-23  |  425 b   |  20 lines

  1. unit ColorDef;
  2.  
  3. interface
  4. type
  5. AttrRecord   =  record   Blink:       boolean;
  6.                          Intense:     boolean;
  7.                          FG:          integer;
  8.                          BG:          integer;
  9.                          Attr:        byte;
  10.                          end;
  11. var  Inputs,
  12.      Headings,
  13.      Displays,
  14.      Msgs,
  15.      Menus:             AttrRecord;
  16.  
  17. implementation
  18.  
  19. end.
  20.