home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 September / Chip_2001-09_cd1.bin / zkuste / delphi / nastroje / d5 / MFTP.ZIP / src / mftp.dpk < prev    next >
Text File  |  2000-09-30  |  912b  |  47 lines

  1. package mftp;
  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 $400000}
  25. {$DESCRIPTION 'Monster FTP Client'}
  26. {$IMPLICITBUILD ON}
  27.  
  28. requires
  29.   vcl50,
  30.   vclx50;
  31.  
  32. contains
  33.   Ftp in 'Ftp.pas',
  34.   FtpData in 'FTPData.pas',
  35.   FtpSock in 'FTPSock.pas',
  36.   FtpCache in 'FTPCache.pas',
  37.   FtpReg in 'ftpreg.pas',
  38.   FtpListView in 'FtpListView.pas',
  39.   FtpTreeView in 'FtpTreeView.pas',
  40.   FtpMsg in 'FtpMsg.pas',
  41.   FtpIndex in 'ftpindex.pas',
  42.   FtpMisc in 'ftpmisc.pas',
  43.   ftpparse in 'ftpparse.pas',
  44.   FtpSearch in 'FtpSearch.pas';
  45.  
  46. end.
  47.