//--------------------------------------------------------------------------- #include #pragma hdrstop USERES("Project1.res"); USEFORM("Unit1.cpp", Form1); USEUNIT("cellList.cpp"); USEUNIT("cell.cpp"); USEUNIT("auditory.cpp"); USEUNIT("globals.cpp"); USEUNIT("grCell.cpp"); USEUNIT("grAuditory.cpp"); USEUNIT("biasAuditory.cpp"); USEUNIT("cell2.cpp"); USEUNIT("bias.cpp"); USEUNIT("cellMaker.cpp"); USEUNIT("cell3.cpp"); USEUNIT("cell3Maker.cpp"); USEUNIT("exhaustCell.cpp"); USEUNIT("exhaustCellMaker.cpp"); USEUNIT("restandCell.cpp"); USEUNIT("restandCellMaker.cpp"); USEUNIT("topology.cpp"); USEUNIT("dynamicCell3.cpp"); USEUNIT("dynamicCell3Maker.cpp"); USEUNIT("dynamicExhaustCell.cpp"); USEUNIT("dynamicExhaustCellMaker.cpp"); USEUNIT("dynamicRestandCell.cpp"); USEUNIT("dynamicRestandCellMaker.cpp"); //--------------------------------------------------------------------------- WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int) { try { Application->Initialize(); Application->Title = "Auditorium"; Application->CreateForm(__classid(TForm1), &Form1); Application->Run(); } catch (Exception &exception) { Application->ShowException(&exception); } return 0; } //---------------------------------------------------------------------------