mirror of
https://github.com/FunkyFr3sh/cnc-ddraw.git
synced 2025-03-25 01:57:47 +01:00
39 lines
958 B
C++
39 lines
958 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#include <vcl.h>
|
|
#pragma hdrstop
|
|
#include <tchar.h>
|
|
//---------------------------------------------------------------------------
|
|
#include <Vcl.Styles.hpp>
|
|
#include <Vcl.Themes.hpp>
|
|
USEFORM("ConfigFormUnit.cpp", ConfigForm);
|
|
//---------------------------------------------------------------------------
|
|
int WINAPI _tWinMain(HINSTANCE, HINSTANCE, LPTSTR, int)
|
|
{
|
|
try
|
|
{
|
|
Application->Initialize();
|
|
Application->MainFormOnTaskBar = true;
|
|
TStyleManager::TrySetStyle("Windows10");
|
|
Application->CreateForm(__classid(TConfigForm), &ConfigForm);
|
|
Application->Run();
|
|
}
|
|
catch (Exception &exception)
|
|
{
|
|
Application->ShowException(&exception);
|
|
}
|
|
catch (...)
|
|
{
|
|
try
|
|
{
|
|
throw Exception("");
|
|
}
|
|
catch (Exception &exception)
|
|
{
|
|
Application->ShowException(&exception);
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
//---------------------------------------------------------------------------
|