| Last change
 on this file was             210, checked in by chronos, 4 years ago | 
        
          | Modified: Updated windows installer script to use InnoSetup 6.
Fixed: Correctly scale toolbar with images.
 | 
        
          | File size:
            771 bytes | 
      
      
| Line |  | 
|---|
| 1 | program AcronymDecoder; | 
|---|
| 2 |  | 
|---|
| 3 | {$mode delphi}{$H+} | 
|---|
| 4 |  | 
|---|
| 5 | uses | 
|---|
| 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)} | 
|---|
| 17 | const | 
|---|
| 18 | HeapTraceLog = 'heaptrclog.trc'; | 
|---|
| 19 | {$ENDIF} | 
|---|
| 20 |  | 
|---|
| 21 |  | 
|---|
| 22 | begin | 
|---|
| 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; | 
|---|
| 34 | end. | 
|---|
| 35 |  | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.