home *** CD-ROM | disk | FTP | other *** search
Delphi Package | 2000-09-30 | 912 b | 47 lines |
- package mftp;
-
- {$R *.RES}
- {$ALIGN ON}
- {$ASSERTIONS ON}
- {$BOOLEVAL OFF}
- {$DEBUGINFO ON}
- {$EXTENDEDSYNTAX ON}
- {$IMPORTEDDATA ON}
- {$IOCHECKS ON}
- {$LOCALSYMBOLS ON}
- {$LONGSTRINGS ON}
- {$OPENSTRINGS ON}
- {$OPTIMIZATION ON}
- {$OVERFLOWCHECKS OFF}
- {$RANGECHECKS OFF}
- {$REFERENCEINFO ON}
- {$SAFEDIVIDE OFF}
- {$STACKFRAMES OFF}
- {$TYPEDADDRESS OFF}
- {$VARSTRINGCHECKS ON}
- {$WRITEABLECONST ON}
- {$MINENUMSIZE 1}
- {$IMAGEBASE $400000}
- {$DESCRIPTION 'Monster FTP Client'}
- {$IMPLICITBUILD ON}
-
- requires
- vcl50,
- vclx50;
-
- contains
- Ftp in 'Ftp.pas',
- FtpData in 'FTPData.pas',
- FtpSock in 'FTPSock.pas',
- FtpCache in 'FTPCache.pas',
- FtpReg in 'ftpreg.pas',
- FtpListView in 'FtpListView.pas',
- FtpTreeView in 'FtpTreeView.pas',
- FtpMsg in 'FtpMsg.pas',
- FtpIndex in 'ftpindex.pas',
- FtpMisc in 'ftpmisc.pas',
- ftpparse in 'ftpparse.pas',
- FtpSearch in 'FtpSearch.pas';
-
- end.
-