59 lines
1.4 KiB
ObjectPascal
59 lines
1.4 KiB
ObjectPascal
|
// Package file for Delphi 12
|
||
|
|
||
|
package frxIntIOIndy12;
|
||
|
{$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,
|
||
|
fs12,
|
||
|
frx12,
|
||
|
frxIntIOBase12,
|
||
|
vclie,
|
||
|
{$IFDEF CUSTOM_INDY}
|
||
|
IndySystem120,
|
||
|
IndyProtocols120,
|
||
|
IndyCore120;
|
||
|
{$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.
|