Componentes.Terceros.DevExp.../official/x.30/Demos/CBuilder/FlowChartDemo.cpp

22 lines
721 B
C++
Raw Normal View History

//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
USERES("FlowChartDemo.res");
USEFORM("main.cpp", MaimForm);
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Application->Initialize();
Application->CreateForm(__classid(TMaimForm), &MaimForm);
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
return 0;
}
//---------------------------------------------------------------------------