source: trunk/vCardStudio.lpr

Last change on this file was 167, checked in by chronos, 10 months ago
  • Added: Import form preparation.
File size: 742 bytes
Line 
1program vCardStudio;
2
3uses
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
11{$R *.res}
12
13{$if declared(UseHeapTrace)}
14const
15 HeapTraceLog = 'heaptrclog.trc';
16{$ENDIF}
17
18begin
19 Application.Scaled:=True;
20 Application.Title:='vCard Studio';
21 {$if declared(UseHeapTrace)}
22 DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
23 SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
24 {$ENDIF}
25 RequireDerivedFormResource := True;
26 Application.Initialize;
27 Application.CreateForm(TCore, Core.Core);
28 Application.Run;
29end.
30
Note: See TracBrowser for help on using the repository browser.