12345678910111213141516171819202122 |
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- USERES("fontgen.res");
- USEFORM("main.cpp", frmMain);
- //---------------------------------------------------------------------------
- WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
- {
- try
- {
- Application->Initialize();
- Application->CreateForm(__classid(TfrmMain), &frmMain);
- Application->Run();
- }
- catch (Exception &exception)
- {
- Application->ShowException(&exception);
- }
- return 0;
- }
- //---------------------------------------------------------------------------
|