23 lines
850 B
C++
23 lines
850 B
C++
|
|
//---------------------------------------------------------------------------
|
||
|
|
#include <vcl.h>
|
||
|
|
#pragma hdrstop
|
||
|
|
USERES("dcldxDockingC6.res");
|
||
|
|
USEPACKAGE("rtl.bpi");
|
||
|
|
USEPACKAGE("dxCoreC6.bpi");
|
||
|
|
USEPACKAGE("designide.bpi");
|
||
|
|
USEPACKAGE("dxDockingC6.bpi");
|
||
|
|
USEPACKAGE("cxLibraryVCLC6.bpi");
|
||
|
|
USEPACKAGE("dclcxLibraryVCLC6.bpi");
|
||
|
|
USEUNIT("dxDockReg.pas");
|
||
|
|
USERES("dxDockReg.dcr");
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
#pragma package(smart_init)
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
// Package source.
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
||
|
|
{
|
||
|
|
return 1;
|
||
|
|
}
|
||
|
|
//---------------------------------------------------------------------------
|