First commit 26/03/2001

This commit is contained in:
2021-09-12 22:08:44 +02:00
commit a1ba7651d0
38 changed files with 1536 additions and 0 deletions

22
GDBackup.cpp Normal file
View File

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