first commit (2010-01-09)

This commit is contained in:
2021-09-01 17:38:08 +02:00
commit 67c478f6f3
21 changed files with 1041 additions and 0 deletions

22
ExtendedNC.cpp Normal file
View File

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