22 lines
790 B
C++
22 lines
790 B
C++
|
|
//---------------------------------------------------------------------------
|
||
|
|
#include <vcl.h>
|
||
|
|
#pragma hdrstop
|
||
|
|
USERES("dcldxOrgCC6.res");
|
||
|
|
USEPACKAGE("rtl.bpi");
|
||
|
|
USEPACKAGE("dxCoreC6.bpi");
|
||
|
|
USEPACKAGE("designide.bpi");
|
||
|
|
USEPACKAGE("vcl.bpi");
|
||
|
|
USEPACKAGE("dxOrgCC6.bpi");
|
||
|
|
USEUNIT("dxotcreg.pas");
|
||
|
|
USEUNIT("dxorgced.pas");
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
#pragma package(smart_init)
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
// Package source.
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
||
|
|
{
|
||
|
|
return 1;
|
||
|
|
}
|
||
|
|
//---------------------------------------------------------------------------
|