ImgBrowser.dpr 413 B

123456789101112131415161718192021222324
  1. program ImgBrowser;
  2. uses
  3. Forms,
  4. {$IFDEF LCL}
  5. {$IFDEF UNIX}{$IFDEF UseCThreads}
  6. cthreads,
  7. {$ENDIF}{$ENDIF}
  8. Interfaces,
  9. {$ENDIF}
  10. Main;
  11. {$R *.res}
  12. begin
  13. {$IFDEF LCL}
  14. RequireDerivedFormResource := True;
  15. Application.Scaled := True;
  16. {$ENDIF}
  17. Application.Initialize;
  18. Application.Title := 'ImgBrowser';
  19. Application.CreateForm(TMainForm, MainForm);
  20. Application.Run;
  21. end.