78 lines
2.1 KiB
ObjectPascal
78 lines
2.1 KiB
ObjectPascal
|
|
package Base;
|
||
|
|
|
||
|
|
{$R *.res}
|
||
|
|
{$ALIGN 8}
|
||
|
|
{$ASSERTIONS ON}
|
||
|
|
{$BOOLEVAL OFF}
|
||
|
|
{$DEBUGINFO ON}
|
||
|
|
{$EXTENDEDSYNTAX ON}
|
||
|
|
{$IMPORTEDDATA ON}
|
||
|
|
{$IOCHECKS ON}
|
||
|
|
{$LOCALSYMBOLS ON}
|
||
|
|
{$LONGSTRINGS ON}
|
||
|
|
{$OPENSTRINGS ON}
|
||
|
|
{$OPTIMIZATION OFF}
|
||
|
|
{$OVERFLOWCHECKS OFF}
|
||
|
|
{$RANGECHECKS OFF}
|
||
|
|
{$REFERENCEINFO ON}
|
||
|
|
{$SAFEDIVIDE OFF}
|
||
|
|
{$STACKFRAMES ON}
|
||
|
|
{$TYPEDADDRESS OFF}
|
||
|
|
{$VARSTRINGCHECKS ON}
|
||
|
|
{$WRITEABLECONST OFF}
|
||
|
|
{$MINENUMSIZE 1}
|
||
|
|
{$IMAGEBASE $400000}
|
||
|
|
{$DESCRIPTION 'Libreria base de FactuGES'}
|
||
|
|
{$IMPLICITBUILD OFF}
|
||
|
|
{$DEFINE DEBUG}
|
||
|
|
|
||
|
|
requires
|
||
|
|
rtl,
|
||
|
|
vcl,
|
||
|
|
RemObjects_Core_D10,
|
||
|
|
DataAbstract_Core_D10,
|
||
|
|
JSDialog100,
|
||
|
|
GUISDK_D11,
|
||
|
|
IndyCore,
|
||
|
|
IndyProtocols,
|
||
|
|
IndySystem,
|
||
|
|
Jcl,
|
||
|
|
JclVcl,
|
||
|
|
JvCoreD11R,
|
||
|
|
JvPageCompsD11R,
|
||
|
|
JvStdCtrlsD11R,
|
||
|
|
JvSystemD11R,
|
||
|
|
JvMMD11R,
|
||
|
|
JvCtrlsD11R,
|
||
|
|
Jv3rdD11R,
|
||
|
|
JvAppFrmD11R,
|
||
|
|
JvDlgsD11R,
|
||
|
|
JvNetD11R,
|
||
|
|
PngComponentsD10,
|
||
|
|
PNG_D10;
|
||
|
|
|
||
|
|
contains
|
||
|
|
uDataTableUtils in 'Utiles\uDataTableUtils.pas',
|
||
|
|
uDBSelectionListUtils in 'Utiles\uDBSelectionListUtils.pas',
|
||
|
|
uIntegerListUtils in 'Utiles\uIntegerListUtils.pas',
|
||
|
|
uDataModuleBase in 'uDataModuleBase.pas' {dmBase: TDataModule},
|
||
|
|
uDataModuleConexion in 'uDataModuleConexion.pas' {dmConexion: TDataModule},
|
||
|
|
uConfigurarConexion in 'uConfigurarConexion.pas' {fConfigurarConexion: TForm},
|
||
|
|
uSistemaFunc in 'Utiles\uSistemaFunc.pas',
|
||
|
|
FactuGES_Intf in '..\Servicios\FactuGES_Intf.pas',
|
||
|
|
uGridUtils in 'Utiles\uGridUtils.pas',
|
||
|
|
uDateUtils in 'Utiles\uDateUtils.pas',
|
||
|
|
uDataModuleConfiguracion in 'uDataModuleConfiguracion.pas' {dmConfiguracion: TDataModule},
|
||
|
|
uViewRegistryUtils in 'ClassRegistry\uViewRegistryUtils.pas',
|
||
|
|
uClassRegistryUtils in 'ClassRegistry\uClassRegistryUtils.pas',
|
||
|
|
uEditorRegistryUtils in 'ClassRegistry\uEditorRegistryUtils.pas',
|
||
|
|
uDialogUtils in 'Utiles\uDialogUtils.pas',
|
||
|
|
uNumUtils in 'Utiles\uNumUtils.pas',
|
||
|
|
MD5 in 'Utiles\MD5.pas',
|
||
|
|
uPasswordUtils in 'Utiles\uPasswordUtils.pas',
|
||
|
|
uInfoProjectUtils in 'Utiles\uInfoProjectUtils.pas',
|
||
|
|
uActualizacion in 'uActualizacion.pas' {fActualizacion: Form},
|
||
|
|
uInformeRegistryUtils in 'ClassRegistry\uInformeRegistryUtils.pas';
|
||
|
|
|
||
|
|
end.
|