-
Notifications
You must be signed in to change notification settings - Fork 7
/
DumpConvert.dpr
25 lines (22 loc) · 989 Bytes
/
DumpConvert.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
program DumpConvert;
uses
Forms,
FormDumpConvertMain in 'Common\FormDumpConvertMain.pas' {Form1},
ULZBinTree in 'LZMA.442b\compression\LZ\ULZBinTree.pas',
ULZInWindow in 'LZMA.442b\compression\LZ\ULZInWindow.pas',
ULZOutWindow in 'LZMA.442b\compression\LZ\ULZOutWindow.pas',
ULZMABase in 'LZMA.442b\compression\LZMA\ULZMABase.pas',
ULZMACommon in 'LZMA.442b\compression\LZMA\ULZMACommon.pas',
ULZMADecoder in 'LZMA.442b\compression\LZMA\ULZMADecoder.pas',
ULZMAEncoder in 'LZMA.442b\compression\LZMA\ULZMAEncoder.pas',
UBitTreeDecoder in 'LZMA.442b\compression\RangeCoder\UBitTreeDecoder.pas',
UBitTreeEncoder in 'LZMA.442b\compression\RangeCoder\UBitTreeEncoder.pas',
URangeDecoder in 'LZMA.442b\compression\RangeCoder\URangeDecoder.pas',
URangeEncoder in 'LZMA.442b\compression\RangeCoder\URangeEncoder.pas';
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.