delightSmartWindows.dpr 1.0 KB

12345678910111213141516171819202122232425262728
  1. program delightSmartWindows;
  2. uses
  3. FastMM4,
  4. Vcl.Forms,
  5. _frmSmartWindows in '..\src\_frmSmartWindows.pas' {frmSmartWindows},
  6. _WindowList in '..\src\_WindowList.pas',
  7. _WindowLastSeen in '..\src\_WindowLastSeen.pas',
  8. _frmDebug in '..\src\_frmDebug.pas' {frmDebug},
  9. _SingleInstance in '..\src\components\_SingleInstance.pas',
  10. _DesktopIconList in '..\src\_DesktopIconList.pas',
  11. _frmAdvanced in '..\src\_frmAdvanced.pas' {frmAdvanced},
  12. delightWhiteSmartWindows in '..\res\delightWhiteSmartWindows\delightWhiteSmartWindows.pas',
  13. _frmAbout in '..\src\_frmAbout.pas' {frmAbout},
  14. _frmFirstStart in '..\src\_frmFirstStart.pas' {frmFirstStart};
  15. {$R *.res}
  16. begin
  17. Application.Initialize;
  18. Application.MainFormOnTaskbar := True;
  19. Application.Title := 'delight SmartWindows';
  20. Application.CreateForm(TfrmSmartWindows, frmSmartWindows);
  21. Application.CreateForm(TfrmAdvanced, frmAdvanced);
  22. Application.CreateForm(TfrmAbout, frmAbout);
  23. Application.CreateForm(TfrmFirstStart, frmFirstStart);
  24. Application.Run;
  25. end.