| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- #include <tchar.h>
- //---------------------------------------------------------------------------
- USEFORM("pawn\fPawnC.cpp", FormPawn);
- USEFORM("tentacles\fTentaclesC.cpp", FormTentacles);
- USEFORM("nutsnbolts\fNutsnBoltsC.cpp", FormNutsnBolts);
- USEFORM("bendingcyl\fBendingC.cpp", FormBending);
- USEFORM("cutoutstar\fCutoutstarC.cpp", FormCutoutstar);
- USEFORM("fcExtrusion.cpp", FormExtrusion);
- //---------------------------------------------------------------------------
- int WINAPI _tWinMain(HINSTANCE, HINSTANCE, LPTSTR, int)
- {
- try
- {
- Application->Initialize();
- Application->MainFormOnTaskBar = true;
- Application->CreateForm(__classid(TFormExtrusion), &FormExtrusion);
- Application->Run();
- }
- catch (Exception &exception)
- {
- Application->ShowException(&exception);
- }
- catch (...)
- {
- try
- {
- throw Exception("");
- }
- catch (Exception &exception)
- {
- Application->ShowException(&exception);
- }
- }
- return 0;
- }
- //---------------------------------------------------------------------------
|