First commit 07/07/2002

This commit is contained in:
2021-09-12 20:55:27 +02:00
commit 3a630dba1d
16 changed files with 1109 additions and 0 deletions

23
smartcard.cpp Normal file
View File

@ -0,0 +1,23 @@
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
USERES("smartcard.res");
USEFORM("Main.cpp", SmartCard_Reader);
USEFORM("SerieCfg.cpp", SerieConf);
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Application->Initialize();
Application->CreateForm(__classid(TSmartCard_Reader), &SmartCard_Reader);
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
return 0;
}
//---------------------------------------------------------------------------