1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
//---------------------------------------------------------------------------
#include <vcl\vcl.h>
#pragma hdrstop
//---------------------------------------------------------------------------
USERES("kviewer.res");
USEFORM("kview.cpp", MainForm);
USEUNIT("..\..\src\viewx.cpp");
USEUNIT("..\..\src\custom.cpp");
USEUNIT("..\..\src\derived.cpp");
USEUNIT("..\..\src\field.cpp");
USEUNIT("..\..\src\fileio.cpp");
USEUNIT("..\..\src\format.cpp");
USEUNIT("..\..\src\handler.cpp");
USEUNIT("..\..\src\persist.cpp");
USEUNIT("..\..\src\std.cpp");
USEUNIT("..\..\src\store.cpp");
USEUNIT("..\..\src\string.cpp");
USEUNIT("..\..\src\table.cpp");
USEUNIT("..\..\src\univ.cpp");
USEUNIT("..\..\src\view.cpp");
USEUNIT("..\..\src\column.cpp");
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Application->Initialize();
Application->Title = "Kit Viewer";
Application->CreateForm(__classid(TMainForm), &MainForm);
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
return 0;
}
//---------------------------------------------------------------------------
|