mirror of
https://github.com/n5ac/mmsstv.git
synced 2025-12-06 04:12:03 +01:00
30 lines
815 B
C++
30 lines
815 B
C++
|
|
//---------------------------------------------------------------------------
|
||
|
|
#include <vcl.h>
|
||
|
|
#pragma hdrstop
|
||
|
|
USERES("MMJASTA.res");
|
||
|
|
USEFORM("Main.cpp", MainWnd);
|
||
|
|
USEUNIT("ComLib.cpp");
|
||
|
|
USEUNIT("LogFile.cpp");
|
||
|
|
USEFORM("OptDlg.cpp", OptDlgBox);
|
||
|
|
USEFORM("TextEdit.cpp", TextEditDlg);
|
||
|
|
USEFORM("QsoDlg.cpp", QSODlgBox);
|
||
|
|
USEUNIT("country.cpp");
|
||
|
|
USEFORM("FEdit.cpp", FileEdit);
|
||
|
|
USEUNIT("LogConv.cpp");
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
|
||
|
|
{
|
||
|
|
try
|
||
|
|
{
|
||
|
|
Application->Initialize();
|
||
|
|
Application->CreateForm(__classid(TMainWnd), &MainWnd);
|
||
|
|
Application->Run();
|
||
|
|
}
|
||
|
|
catch (Exception &exception)
|
||
|
|
{
|
||
|
|
Application->ShowException(&exception);
|
||
|
|
}
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
//---------------------------------------------------------------------------
|