//--------------------------------------------------------------------------- #include #ifdef _WIN32 #include #endif #pragma hdrstop #include //--------------------------------------------------------------------------- USEFORM("fcGrass.cpp", FormGrass); //--------------------------------------------------------------------------- extern "C" int FMXmain() { try { Application->Initialize(); Application->CreateForm(__classid(TFormGrass), &FormGrass); Application->Run(); } catch (Exception &exception) { Application->ShowException(&exception); } catch (...) { try { throw Exception(""); } catch (Exception &exception) { Application->ShowException(&exception); } } return 0; } //---------------------------------------------------------------------------