Last change
on this file was 232, checked in by chronos, 4 weeks ago |
- Added: Vector application logo in SVG format. Generated raster logo with resolution 256x256 pixels.
|
File size:
688 bytes
|
Line | |
---|
1 | program AcronymDecoder;
|
---|
2 |
|
---|
3 | uses
|
---|
4 | {$IFDEF UNIX}
|
---|
5 | cthreads, clocale,
|
---|
6 | {$ENDIF}
|
---|
7 | Interfaces, // this includes the LCL widgetset
|
---|
8 | Forms, Acronym, Common, SysUtils, Core, FormCheck
|
---|
9 | { you can add units after this };
|
---|
10 |
|
---|
11 | {$R *.res}
|
---|
12 |
|
---|
13 | {$if declared(UseHeapTrace)}
|
---|
14 | const
|
---|
15 | HeapTraceLog = 'heaptrclog.trc';
|
---|
16 | {$ENDIF}
|
---|
17 |
|
---|
18 |
|
---|
19 | begin
|
---|
20 | {$if declared(UseHeapTrace)}
|
---|
21 | DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
|
---|
22 | SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
|
---|
23 | {$ENDIF}
|
---|
24 |
|
---|
25 | Application.Title:='Acronym Decoder';
|
---|
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.