home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 September
/
Chip_2002-09_cd1.bin
/
zkuste
/
delphi
/
kompon
/
d45
/
OPTIONS.ZIP
/
Units
/
DclOpt5.dpk
< prev
next >
Wrap
Text File
|
2002-07-01
|
872b
|
42 lines
package DclOpt5;
{$R *.RES}
{$ALIGN ON}
{$ASSERTIONS ON}
{$BOOLEVAL OFF}
{$DEBUGINFO ON}
{$EXTENDEDSYNTAX ON}
{$IMPORTEDDATA ON}
{$IOCHECKS ON}
{$LOCALSYMBOLS ON}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION ON}
{$OVERFLOWCHECKS OFF}
{$RANGECHECKS OFF}
{$REFERENCEINFO ON}
{$SAFEDIVIDE OFF}
{$STACKFRAMES OFF}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST ON}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$IMPLICITBUILD OFF}
requires
vcl50,
Vclx50,
VCLSMP50;
contains
ValueEditor in 'ValueEditor.pas',
BooleanEditor in 'BooleanEditor.pas' {frmBooleanEditor},
DateTimeEditor in 'DateTimeEditor.pas' {frmDateTimeEditor},
FlagsEditor in 'FlagsEditor.pas' {frmFlagsEditor},
OpEditor in 'OpEditor.pas' {frmOpEditor},
Options in 'Options.pas',
ArrayEditor in 'ArrayEditor.pas' {frmArrayEditor};
end.