-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLauncher.dpr
45 lines (38 loc) · 1.86 KB
/
Launcher.dpr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Program Launcher;
{ ---------------------------------------------------------- }
{ Developed by Muhammad Ajmal p }
{ ---------------------------------------------------------- }
{$R *.dres}
uses
System.SysUtils,
Vcl.Forms,
Vcl.Menus,
UnitMDIMain in 'UnitMDIMain.pas' {FormMDIMain},
ESoft.Launcher.Application in 'ESoft.Launcher.Application.pas',
ESoft.Launcher.UI.AppGroupEditor in 'ESoft.Launcher.UI.AppGroupEditor.pas' {FormAppGroupEditor},
ESoft.Launcher.Parameter in 'ESoft.Launcher.Parameter.pas',
ESoft.Launcher.UI.ParamEditor in 'ESoft.Launcher.UI.ParamEditor.pas' {FormParamEditor},
ESoft.Launcher.UI.ParamBrowser in 'ESoft.Launcher.UI.ParamBrowser.pas' {FormParameterBrowser},
ESoft.Utils in 'ESoft.Utils.pas',
ESoft.Launcher.UI.BackupRestore in 'ESoft.Launcher.UI.BackupRestore.pas' {FormBackupRestore},
ESoft.Launcher.RecentItems in 'ESoft.Launcher.RecentItems.pas',
ESoft.Launcher.Clipboard in 'ESoft.Launcher.Clipboard.pas',
ESoft.Launcher.UI.ClipboardBrowser in 'ESoft.Launcher.UI.ClipboardBrowser.pas' {FormClipboardBrowser},
ESoft.UI.Downloader in 'ESoft.UI.Downloader.pas' {FormDownloader},
ESoft.Launcher.PopupList in 'ESoft.Launcher.PopupList.pas',
ESoft.Launcher.UI.ErrorViewer in 'ESoft.Launcher.UI.ErrorViewer.pas' {FormExceptionHandler},
ESoft.Launcher.FavouriteItems in 'ESoft.Launcher.FavouriteItems.pas',
ESoft.Launcher.DM.Main in 'ESoft.Launcher.DM.Main.pas' {dmMain: TDataModule};
{$R *.res}
Begin
ReportMemoryLeaksOnShutdown := DebugHook <> 0;
FreeAndNil(PopupList);
PopupList := TExPopupList.Create;
// Note: will be freed by Finalization section of Menus unit { Ajmal }
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.Title := 'Launcher';
Application.CreateForm(TFormMDIMain, FormMDIMain);
Application.Run;
End.