Files
PTV_Archive/Pt5201/Design/PEH/SW/Project1.cpp
2022-02-21 12:42:04 +01:00

21 lines
606 B
C++

//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
USERES("Project1.res");
USEUNIT("Master\Source\Code\DEVDRV\xa\TVP6KDRV.C");
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Application->Initialize();
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
return 0;
}
//---------------------------------------------------------------------------