home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 December / Chip_2002-12_cd1.bin / zkuste / delphi / kompon / d234567 / COOLTRAY.ZIP / CoolTrayIcon_D5.dpk < prev    next >
Text File  |  2002-04-11  |  774b  |  41 lines

  1. package CoolTrayIcon_D5;
  2.  
  3. {$R *.RES}
  4. {$R 'CoolTrayIcon.dcr'}
  5. {$R 'TextTrayIcon.dcr'}
  6. {$ALIGN ON}
  7. {$ASSERTIONS ON}
  8. {$BOOLEVAL OFF}
  9. {$DEBUGINFO ON}
  10. {$EXTENDEDSYNTAX ON}
  11. {$IMPORTEDDATA ON}
  12. {$IOCHECKS ON}
  13. {$LOCALSYMBOLS ON}
  14. {$LONGSTRINGS ON}
  15. {$OPENSTRINGS ON}
  16. {$OPTIMIZATION ON}
  17. {$OVERFLOWCHECKS OFF}
  18. {$RANGECHECKS OFF}
  19. {$REFERENCEINFO ON}
  20. {$SAFEDIVIDE OFF}
  21. {$STACKFRAMES OFF}
  22. {$TYPEDADDRESS OFF}
  23. {$VARSTRINGCHECKS ON}
  24. {$WRITEABLECONST OFF}
  25. {$MINENUMSIZE 1}
  26. {$IMAGEBASE $400000}
  27. {$DESCRIPTION 'CoolTrayIcon and Friends'}
  28. {$IMPLICITBUILD OFF}
  29.  
  30. requires
  31.   VCL50;
  32.  
  33. contains
  34.   SimpleTimer in 'SimpleTimer.pas',
  35.   TextTrayIcon in 'TextTrayIcon.pas',
  36.   CoolTrayIcon in 'CoolTrayIcon.pas',
  37.   RegisterTrayIcons in 'RegisterTrayIcons.pas';
  38.  
  39. end.
  40.  
  41.