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