59 lines
1.4 KiB
ObjectPascal
59 lines
1.4 KiB
ObjectPascal
// Package file for Delphi 24
|
|
|
|
package frxIntIOIndy24;
|
|
{$I frx.inc}
|
|
{$ALIGN 8}
|
|
{$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}
|
|
{$RUNONLY}
|
|
{$IMPLICITBUILD OFF}
|
|
|
|
requires
|
|
VCL,
|
|
fs24,
|
|
frx24,
|
|
frxIntIOBase24,
|
|
vclie,
|
|
{$IFDEF CUSTOM_INDY}
|
|
IndySystem240,
|
|
IndyProtocols240,
|
|
IndyCore240;
|
|
{$ELSE}
|
|
IndySystem,
|
|
IndyProtocols,
|
|
IndyCore;
|
|
{$ENDIF}
|
|
|
|
contains
|
|
frxTransportIndyConnector in 'frxTransportIndyConnector.pas',
|
|
frxTransportIndyConnectorHTTP in 'frxTransportIndyConnectorHTTP.pas',
|
|
frxIOTransportDropboxIndy in 'frxIOTransportDropboxIndy.pas',
|
|
frxIOTransportOneDriveIndy in 'frxIOTransportOneDriveIndy.pas',
|
|
frxIOTransportBoxComIndy in 'frxIOTransportBoxComIndy.pas',
|
|
frxIOTransportGoogleDriveIndy in 'frxIOTransportGoogleDriveIndy.pas',
|
|
frxIOTransportYandexDiskIndy in 'frxIOTransportYandexDiskIndy.pas',
|
|
frxIOTransportGMailIndy in 'frxIOTransportGMailIndy.pas',
|
|
frxIOTransportOutlookIndy in 'frxIOTransportOutlookIndy.pas',
|
|
frxIOTransportIndyMail in 'frxIOTransportIndyMail.pas',
|
|
frxIOTransportFTP in 'frxIOTransportFTP.pas';
|
|
|
|
end.
|