Update of /cvsroot/instantobjects/Source/Core/K3
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6176/Source/Core/K3
Added Files:
IOCore.dpk
Log Message:
Design and RunTime package for Kylix3
--- NEW FILE: IOCore.dpk ---
package IOCore;
{$R *.res}
{$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}
{$DESCRIPTION 'InstantObjects Run-Time Package (Kylix 3)'}
{$LIBSUFFIX '_K3'}
{$RUNONLY}
{$IMPLICITBUILD OFF}
requires
rtl,
visualclx,
dataclx,
visualdbclx;
contains
InstantUtils in '../InstantUtils.pas',
InstantClasses in '../InstantClasses.pas',
InstantConsts in '../InstantConsts.pas',
InstantRtti in '../InstantRtti.pas',
InstantCommand in '../InstantCommand.pas',
InstantPersistence in '../InstantPersistence.pas',
InstantExplorer in '../InstantExplorer.pas',
InstantDesignHook in '../InstantDesignHook.pas',
InstantCode in '../InstantCode.pas',
InstantTextFiler in '../InstantTextFiler.pas',
InstantPresentation in '../InstantPresentation.pas',
InstantAccessors in '../InstantAccessors.pas',
InstantConnectionManager in '../InstantConnectionManager.pas' {InstantConnectionManagerForm},
InstantImageUtils in '../InstantImageUtils.pas';
end.
|