source: trunk/AcronymDecoder.lpr

Last change on this file was 215, checked in by chronos, 2 years ago
  • Modified: Build under Lazarus 2.2.0.
  • Modified: Updated Common package.
File size: 773 bytes
Line 
1program AcronymDecoder;
2
3{$mode delphi}{$H+}
4
5uses
6 {$IFDEF UNIX}
7 cthreads, clocale,
8 {$ENDIF}
9 Interfaces, // this includes the LCL widgetset
10 Forms, UAcronym, Common, SysUtils,
11 UFormMain, UCore, UFormCheck
12 { you can add units after this };
13
14{$R *.res}
15
16{$if declared(UseHeapTrace)}
17const
18 HeapTraceLog = 'heaptrclog.trc';
19{$ENDIF}
20
21
22begin
23 {$if declared(UseHeapTrace)}
24 DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
25 SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
26 {$ENDIF}
27
28 Application.Title := 'Acronym Decoder';
29 RequireDerivedFormResource := True;
30 Application.Initialize;
31 Application.CreateForm(TCore, Core);
32 Application.CreateForm(TFormMain, FormMain);
33 Application.Run;
34end.
35
Note: See TracBrowser for help on using the repository browser.