19 lines
709 B
C++
19 lines
709 B
C++
|
|
//---------------------------------------------------------------------------
|
||
|
|
#include <vcl.h>
|
||
|
|
#pragma hdrstop
|
||
|
|
USERES("dcldxOrgCC5.res");
|
||
|
|
USEPACKAGE("VCL50.bpi");
|
||
|
|
USEPACKAGE("dxOrgCC5.bpi");
|
||
|
|
USEUNIT("dxotcreg.pas");
|
||
|
|
USEUNIT("dxorgced.pas");
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
#pragma package(smart_init)
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
// Package source.
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
||
|
|
{
|
||
|
|
return 1;
|
||
|
|
}
|
||
|
|
//---------------------------------------------------------------------------
|