CoolTrayIcon_D6plus.dpk
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

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