home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 December
/
simtel1292_SIMTEL_1292_Walnut_Creek.iso
/
msdos
/
progjorn
/
pj_7_1.arc
/
WINDGLOB.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1988-12-15
|
720b
|
33 lines
{ WindTest, WindInst typed constants (TC) }
UNIT WindGlob;
INTERFACE
USES Crt;
CONST
CBase : String[7] = '@CBASE@'; { Mark beginning of TC area }
{----- Start of default typed-constants area }
WBForeColor : Word = Blue; { Border foreground color }
WBBackColor : Word = LightGray; { Border background color }
WTForeColor : Word = Yellow; { Text foreground color }
WTBackColor : Word = Blue; { Text background color }
WTitle : String[40] = ' Test Window '; { Window title }
{----- End of default typed-constants area }
EBase : Char = '!'; { Mark end of TC area }
IMPLEMENTATION
{ No code in this unit }
END.