Last change
on this file was 173, checked in by chronos, 5 months ago |
- Modified: TNameDetails class moved into separate file.
|
File size:
755 bytes
|
Line | |
---|
1 | program vCardStudio;
|
---|
2 |
|
---|
3 | uses
|
---|
4 | {$IFDEF UNIX}
|
---|
5 | cthreads, clocale,
|
---|
6 | {$ENDIF}
|
---|
7 | Interfaces, // this includes the LCL widgetset
|
---|
8 | Forms, FormMain, Core, Diff, SysUtils, FormCompareSideBySide, TestCases,
|
---|
9 | VCardFile, FormColumns, FormCompare, FormNormalize, FormExport, FormImport,
|
---|
10 | FormMerge;
|
---|
11 |
|
---|
12 | {$R *.res}
|
---|
13 |
|
---|
14 | {$if declared(UseHeapTrace)}
|
---|
15 | const
|
---|
16 | HeapTraceLog = 'heaptrclog.trc';
|
---|
17 | {$ENDIF}
|
---|
18 |
|
---|
19 | begin
|
---|
20 | Application.Scaled:=True;
|
---|
21 | Application.Title:='vCard Studio';
|
---|
22 | {$if declared(UseHeapTrace)}
|
---|
23 | DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
|
---|
24 | SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
|
---|
25 | {$ENDIF}
|
---|
26 | RequireDerivedFormResource := True;
|
---|
27 | Application.Initialize;
|
---|
28 | Application.CreateForm(TCore, Core.Core);
|
---|
29 | Application.Run;
|
---|
30 | end.
|
---|
31 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.