git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.SDAC@3 6f543ec7-021b-7e4c-98c9-62eafc7fb9a8
43 lines
1.5 KiB
C++
43 lines
1.5 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#include <vcl.h>
|
|
#pragma hdrstop
|
|
USERES("dac50.res");
|
|
USEPACKAGE("vcl50.bpi");
|
|
USEUNIT("..\DBAccess.pas");
|
|
USEUNIT("..\CRAccess.pas");
|
|
USEUNIT("..\DALoader.pas");
|
|
USEUNIT("..\DADump.pas");
|
|
USEUNIT("..\CRParser.pas");
|
|
USEUNIT("..\DAConsts.pas");
|
|
USEUNIT("..\DBMonitorIntf.pas");
|
|
USEUNIT("..\DBMonitorClient.pas");
|
|
USEUNIT("..\DASQLMonitor.pas");
|
|
USEUNIT("..\MemData.pas");
|
|
USEUNIT("..\MemDS.pas");
|
|
USEUNIT("..\VirtualTable.pas");
|
|
USEUNIT("..\DacVcl.pas");
|
|
USEUNIT("..\DAVersionInfo.pas");
|
|
USEUNIT("..\CLRClasses.pas");
|
|
USEUNIT("..\MemUtils.pas");
|
|
USEUNIT("..\DAScript.pas");
|
|
USEUNIT("..\CRBatchMove.pas");
|
|
USEUNIT("..\Win32Timer.pas");
|
|
USEUNIT("..\CRConnectionPool.pas");
|
|
USEUNIT("..\CRXml.pas");
|
|
USEPACKAGE("Vcldb50.bpi");
|
|
USEPACKAGE("VCLBDE50.bpi");
|
|
//---------------------------------------------------------------------------
|
|
#pragma package(smart_init)
|
|
//---------------------------------------------------------------------------
|
|
|
|
// Package source.
|
|
//---------------------------------------------------------------------------
|
|
|
|
#pragma argsused
|
|
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
|
{
|
|
return 1;
|
|
}
|
|
//---------------------------------------------------------------------------
|