-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLibrary_Downloader.dpr
More file actions
23 lines (19 loc) · 1.13 KB
/
Copy pathLibrary_Downloader.dpr
File metadata and controls
23 lines (19 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
program Library_Downloader;
uses
Vcl.Forms,
Unit2 in 'C:\For_Alex\Project_MISIS\MyHackProgs\MisisLibraryHack\Unit2.pas' {Form2},
SynPdf in 'C:\For_Alex\Project_MISIS\MyHackProgs\MisisLibraryHack\Win32\Debug\SynPDF-master\SynPdf.pas',
SynGdiPlus in 'C:\For_Alex\Project_MISIS\MyHackProgs\MisisLibraryHack\Win32\Debug\SynPDF-master\SynGdiPlus.pas',
SynZip in 'C:\For_Alex\Project_MISIS\MyHackProgs\MisisLibraryHack\Win32\Debug\SynPDF-master\SynZip.pas',
SynCrypto in 'C:\For_Alex\Project_MISIS\MyHackProgs\MisisLibraryHack\Win32\Debug\SynPDF-master\SynCrypto.pas',
SynLZ in 'C:\For_Alex\Project_MISIS\MyHackProgs\MisisLibraryHack\Win32\Debug\SynPDF-master\SynLZ.pas',
SynCommons in 'C:\For_Alex\Project_MISIS\MyHackProgs\MisisLibraryHack\Win32\Debug\SynPDF-master\SynCommons.pas',
SynTable in 'C:\For_Alex\Project_MISIS\MyHackProgs\MisisLibraryHack\Win32\Debug\SynPDF-master\SynTable.pas',
ThreadUnit in 'C:\For_Alex\Project_MISIS\MyHackProgs\MisisLibraryHack\temp\ThreadUnit.pas';
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm2, Form2);
Application.Run;
end.