home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
pascal
/
library
/
dos
/
mailpro
/
colordef.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1988-08-23
|
425 b
|
20 lines
unit ColorDef;
interface
type
AttrRecord = record Blink: boolean;
Intense: boolean;
FG: integer;
BG: integer;
Attr: byte;
end;
var Inputs,
Headings,
Displays,
Msgs,
Menus: AttrRecord;
implementation
end.