home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 September / Chip_2002-09_cd1.bin / zkuste / delphi / kompon / d45 / OPTIONS.ZIP / Units / DclOpt4.dpk < prev    next >
Text File  |  2002-07-01  |  874b  |  42 lines

  1. package DclOpt4;
  2.  
  3. {$R *.RES}
  4. {$ALIGN ON}
  5. {$ASSERTIONS ON}
  6. {$BOOLEVAL OFF}
  7. {$DEBUGINFO ON}
  8. {$EXTENDEDSYNTAX ON}
  9. {$IMPORTEDDATA ON}
  10. {$IOCHECKS ON}
  11. {$LOCALSYMBOLS ON}
  12. {$LONGSTRINGS ON}
  13. {$OPENSTRINGS ON}
  14. {$OPTIMIZATION ON}
  15. {$OVERFLOWCHECKS OFF}
  16. {$RANGECHECKS OFF}
  17. {$REFERENCEINFO ON}
  18. {$SAFEDIVIDE OFF}
  19. {$STACKFRAMES OFF}
  20. {$TYPEDADDRESS OFF}
  21. {$VARSTRINGCHECKS ON}
  22. {$WRITEABLECONST ON}
  23. {$MINENUMSIZE 1}
  24. {$IMAGEBASE $00400000}
  25. {$IMPLICITBUILD OFF}
  26.  
  27. requires
  28.   vcl40,
  29.   VCLX40,
  30.   VCLSMP40;
  31.  
  32. contains
  33.   Options in 'Options.pas',
  34.   OpEditor in 'OpEditor.pas' {frmOpEditor},
  35.   ValueEditor in 'ValueEditor.pas',
  36.   BooleanEditor in 'BooleanEditor.pas' {frmBooleanEditor},
  37.   DateTimeEditor in 'DateTimeEditor.pas' {frmDateTimeEditor},
  38.   FlagsEditor in 'FlagsEditor.pas' {frmFlagsEditor},
  39.   ArrayEditor in 'ArrayEditor.pas' {frmArrayEditor};
  40.  
  41. end.
  42.