Componentes.Terceros.jvcl/official/3.36/examples/RaLib/RaEditor/B3_RAEditorTest.cpp
2009-02-27 12:23:32 +00:00

22 lines
679 B
C++

//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
USERES("B3_RAEditorTest.res");
USEFORMNS("fRAEditorTest.pas", Fraeditortest, Editor);
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Application->Initialize();
Application->CreateForm(__classid(TEditor), &Editor);
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
return 0;
}
//---------------------------------------------------------------------------