24 lines
999 B
C++
24 lines
999 B
C++
|
|
//---------------------------------------------------------------------------
|
||
|
|
#include <vcl.h>
|
||
|
|
#pragma hdrstop
|
||
|
|
USERES("dxLayoutControlC11.res");
|
||
|
|
USEPACKAGE("vcl.bpi");
|
||
|
|
USEPACKAGE("dxComnC11.bpi");
|
||
|
|
USEPACKAGE("cxLibraryC11.bpi");
|
||
|
|
USEUNIT("dxLayoutCommon.pas");
|
||
|
|
USEUNIT("dxLayoutControl.pas");
|
||
|
|
USEUNIT("dxLayoutControlAdapters.pas");
|
||
|
|
USEFORMNS("dxLayoutCustomizeForm.pas", dxLayoutCustomizeForm, LayoutCustomizeForm);
|
||
|
|
USEFORMNS("dxLayoutEditForm.pas", dxLayoutEditForm, LayoutEditForm);
|
||
|
|
USEUNIT("dxLayoutLookAndFeels.pas");
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
#pragma package(smart_init)
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
// Package source.
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
||
|
|
{
|
||
|
|
return 1;
|
||
|
|
}
|
||
|
|
//---------------------------------------------------------------------------
|