mirror of
https://github.com/VARCem/PTV_Archive.git
synced 2026-09-25 08:24:39 +00:00
21 lines
606 B
C++
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;
|
|
}
|
|
//---------------------------------------------------------------------------
|