| 123456789101112131415161718192021222324 |
- program ImgBrowser;
- uses
- Forms,
- {$IFDEF LCL}
- {$IFDEF UNIX}{$IFDEF UseCThreads}
- cthreads,
- {$ENDIF}{$ENDIF}
- Interfaces,
- {$ENDIF}
- Main;
- {$R *.res}
- begin
- {$IFDEF LCL}
- RequireDerivedFormResource := True;
- Application.Scaled := True;
- {$ENDIF}
- Application.Initialize;
- Application.Title := 'ImgBrowser';
- Application.CreateForm(TMainForm, MainForm);
- Application.Run;
- end.
|