File: kviewer.cpp

package info (click to toggle)
metakit 2.4.3-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 6,468 kB
  • ctags: 3,548
  • sloc: xml: 29,455; cpp: 23,339; sh: 9,051; tcl: 1,195; python: 577; makefile: 254; ansic: 14
file content (38 lines) | stat: -rwxr-xr-x 1,260 bytes parent folder | download | duplicates (2)
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;
}
//---------------------------------------------------------------------------