23 lines
929 B
C++
23 lines
929 B
C++
//---------------------------------------------------------------------------
|
|
#include <vcl.h>
|
|
#pragma hdrstop
|
|
USERES("dxFlowChartC12.res");
|
|
USEPACKAGE("vclx.bpi");
|
|
USEPACKAGE("dxCoreC12.bpi");
|
|
USEUNIT("Dxflchrt.pas");
|
|
USEUNIT("dxLines.pas");
|
|
USEFORMNS("dxSelUnion.pas", Dxselunion, FSelectUnion);
|
|
USEFORMNS("dxEditCon.pas", Dxeditcon, FEditConnection);
|
|
USEFORMNS("dxEditObj.pas", Dxeditobj, FEditObject);
|
|
USEFORMNS("dxFcEdit.pas", Dxfcedit, FChartEditor);
|
|
//---------------------------------------------------------------------------
|
|
#pragma package(smart_init)
|
|
//---------------------------------------------------------------------------
|
|
// Package source.
|
|
//---------------------------------------------------------------------------
|
|
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
|
{
|
|
return 1;
|
|
}
|
|
//---------------------------------------------------------------------------
|