home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri K-CD 2002 #1 / K-CD_2002-01.iso / Delphi / INSTALL / program files / Borland / Delphi6 / Demos / ShellControls / dclshlctrls.dpk < prev    next >
Encoding:
Delphi Package  |  2001-05-22  |  733 b   |  42 lines

  1. package dclshlctrls;
  2.  
  3. {$R *.res}
  4. {$ALIGN 8}
  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 OFF}
  15. {$OVERFLOWCHECKS OFF}
  16. {$RANGECHECKS OFF}
  17. {$REFERENCEINFO ON}
  18. {$SAFEDIVIDE OFF}
  19. {$STACKFRAMES OFF}
  20. {$TYPEDADDRESS OFF}
  21. {$VARSTRINGCHECKS ON}
  22. {$WRITEABLECONST OFF}
  23. {$MINENUMSIZE 1}
  24. {$IMAGEBASE $400000}
  25. {$DESCRIPTION 'Shell Control Property and Component Editors'}
  26. {$DESIGNONLY}
  27. {$IMPLICITBUILD OFF}
  28. {$LIBSUFFIX '60'}
  29.  
  30. requires
  31.   rtl,
  32.   Vcl,
  33.   designide,
  34.   Vclx,
  35.   vclshlctrls;
  36.  
  37. contains
  38.   RootEdit in 'RootEdit.pas' {RootPathEditDlg},
  39.   ShellReg in 'ShellReg.pas';
  40.  
  41. end.
  42.