JdSoft/JD_soft.cpp
2021-09-12 22:11:31 +02:00

23 lines
852 B
C++

//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
USERES("JD_soft.res");
USEPACKAGE("VCLX35.bpi");
USEPACKAGE("VCL35.bpi");
USEUNIT("ActImg\actimg.cpp");
USERES("ActImg\actimg.dcr");
USEUNIT("LetreroDigital\LetreroDigital.cpp");
USERES("LetreroDigital\LetreroDigital.dcr");
USEUNIT("DigitNum\DigitNum.cpp");
USERES("DigitNum\DigitNum.dcr");
//---------------------------------------------------------------------------
#pragma package(smart_init)
//---------------------------------------------------------------------------
// Package source.
//---------------------------------------------------------------------------
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
{
return 1;
}
//---------------------------------------------------------------------------