First commit (1999-02-04)

This commit is contained in:
2021-09-01 17:25:24 +02:00
commit 03a4fa4ea9
10 changed files with 262 additions and 0 deletions

21
AcercaDeEXE.cpp Normal file
View File

@ -0,0 +1,21 @@
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
USERES("AcercaDeEXE.res");
USEFORM("AcercaDe.cpp", About);
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Application->Initialize();
Application->CreateForm(__classid(TAbout), &About);
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
return 0;
}
//---------------------------------------------------------------------------