-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathextractor.dpr
More file actions
35 lines (29 loc) · 762 Bytes
/
Copy pathextractor.dpr
File metadata and controls
35 lines (29 loc) · 762 Bytes
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
program Extractor;
uses
system.sysUtils,
vcl.dialogs,
Vcl.Forms,
Vcl.Styles,
Vcl.Themes,
mormot.lib.win7zip in '..\..\3P\mORMot2\src\lib\mormot.lib.win7zip.pas',
_debugWindow in '..\DebugWindow\_debugWindow.pas',
main in 'main.pas' {Form1},
RAR in '..\TRAR\RAR.pas',
RAR_DLL in '..\TRAR\RAR_DLL.pas';
{$R *.res}
begin
{$if BazDebugWindow}debugClear;{$endif}
Application.Initialize;
Application.MainFormOnTaskbar := True;
TStyleManager.TrySetStyle('Charcoal Dark Slate');
Application.CreateForm(TForm1, Form1);
try
form1.config := readConfigFile;
form1.passwords := TPasswords.create;
form1.finishSetup;
except on e:exception do begin
showMessage(e.message);
halt;
end;end;
Application.Run;
end.