forked from crypto2011/KBBUILDER
-
Notifications
You must be signed in to change notification settings - Fork 1
/
DCUTbl.pas
722 lines (677 loc) · 17.9 KB
/
DCUTbl.pas
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
unit DCUTbl;
(*
The table of used units module of the DCU32INT utility by Alexei Hmelnov.
It is used to obtain the necessary imported declarations. If the imported unit
was not found, the program will still work, but, for example, will show
the corresponding constant value as a HEX dump.
----------------------------------------------------------------------------
E-Mail: [email protected]
http://hmelnov.icc.ru/DCU/
----------------------------------------------------------------------------
See the file "readme.txt" for more details.
------------------------------------------------------------------------
IMPORTANT NOTE:
This software is provided 'as-is', without any expressed or implied warranty.
In no event will the author be held liable for any damages arising from the
use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented, you must not
claim that you wrote the original software.
2. Altered source versions must be plainly marked as such, and must not
be misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
*)
interface
uses
SysUtils,Classes,DCU32,DCP{$IFDEF Win32},Windows{$ENDIF},IniFiles;
const
PathSep = {$IFNDEF LINUX}';'{$ELSE}':'{$ENDIF};
DirSep = {$IFNDEF LINUX}'\'{$ELSE}'/'{$ENDIF};
var
DCUPath: String='*'; {To disable LIB directory autodetection use -U flag}
PASPath: String='*' {Let only presence of -P signals, that source lines are required};
LibConfigFN: String = ''; //For autodetection
PreferDebugLib: Boolean = false; //For autodetection
TopLevelUnitClass: TUnitClass = TUnit;
IgnoreUnitStamps: Boolean = true;
function ExtractFileNamePkg(const FN: String): String;
function GetDCUByName(FName,FExt: String; VerRq: integer; MSILRq: boolean;
PlatformRq: TDCUPlatform; StampRq: integer): TUnit;
function GetDCUOfMemory(MemP: Pointer): TUnit;
procedure FreeDCU;
procedure LoadSourceLines(const FName: String; Lines: TStrings);
procedure SetUnitAliases(const V: String);
function IsDCPName(const S: String): Boolean;
function LoadPackage(const FName: String; IsMain: Boolean): TDCPackage;
const
PkgSep = '@';
implementation
{const
PkgErr = Pointer(1);}
var
PathList: TStringList = Nil;
FUnitAliases: TStringList = Nil;
AddedUnitDirToPath: boolean = false;
AutoLibDirNDX: Integer = -1;
procedure FreePackages;
var
i: integer;
Pkg: TDCPackage;
begin
if PathList=Nil then
Exit;
for i:=0 to PathList.Count-1 do begin
Pkg := TDCPackage(PathList.Objects[i]);
{if Pkg=PkgErr then
Continue;}
Pkg.Free;
end ;
//PathList.Clear;
PathList.Free;
PathList := Nil;
end ;
function ExtractFileNamePkg(const FN: String): String;
{Extract file name for packaged or normal files}
var
CP: PChar;
begin
Result := ExtractFileName(FN);
CP := StrScan(PChar(Result),PkgSep);
if CP<>Nil then
Result := StrPas(CP+1);
end ;
function GetVerTag(Ver: integer): String;
const
sVerName: array[2..MaxDelphiVer]of String = (
'D2',
'D3',
'D4',
'D5',
'D6',
'D7',
'D8',
'D2005', //2005
'D2006', //2006
'',
'D2009', //2009
'',
'D2010', //2010
'XE', //XE
'XE2', //XE2
'XE3', //XE3
'XE4', //XE4
'XE5', //XE5
'XE6', //XE6
'XE7', //XE7&AppMethod
'XE8', //XE8
'10Seattle', //10 Seattle
'10_1Berlin', //10.1 Berlin
'10_2Tokyo', //10.2 Tokyo
'10_3Rio' //10.3 Rio
);
begin
if Ver<verK1 then
Result := sVerName[Ver]
else
Result := Format('K%d',[Ver-verK1+1]);
end ;
function GetPlatformTag(IsMSIL: boolean; Platf: TDCUPlatform): String;
const
platfSymbol: array[TDCUPlatform]of String = ('','64','X',
'iOSSim','iOSDev','iOSDev64','Android','Linux64');
begin
if IsMSIL then
Result := 'N'
else
Result := platfSymbol[Platf];
end ;
function GetCfgLibDir(VerRq: integer; MSILRq: boolean; PlatformRq: TDCUPlatform): String;
var
sKey,S: String;
KeyCh: Char;
IniF: TIniFile;
begin
Result := '';
if LibConfigFN='' then
Exit;
if VerRq<0 then
Exit;
if not FileExists(LibConfigFN) then
Exit;
if PreferDebugLib then
KeyCh := 'D'
else
KeyCh := 'R';
sKey := GetVerTag(VerRq)+'_'+GetPlatformTag(MSILRq,PlatformRq)+KeyCh;
try
IniF := TIniFile.Create(LibConfigFN);
try
Result := IniF.ReadString('LIBS',sKey,'');
if Result='' then
Exit;
Result := ExtractFilePath(Result);
if ExtractFileDrive(Result)<>'' then
Exit;
S := IniF.ReadString('CFG','LIBROOT','');
if S<>'' then
S := S+DirSep
else
S := ExtractFilePath(LibConfigFN);
Result := S+Result;
finally
IniF.Free;
end ;
except
Result := '';
end ;
end ;
function GetDelphiLibDir(VerRq: integer; MSILRq: boolean; PlatformRq: TDCUPlatform): String;
{ Delphi LIB directory autodetection }
{$IFDEF Win32}
const
sRoot = 'RootDir';
sPlatformDir: array[TDCUPlatform]of String = ('win32','win64','osx32','iOSSimulator',
'iOSDevice','iOSDevice64','android','linux64');
var
Key: HKey;
sPath,sRes,sLib: String;
DataType, DataSize: Integer;
{$ENDIF}
begin
Result := GetCfgLibDir(VerRq,MSILRq,PlatformRq);
if Result<>'' then
Exit;
{$IFDEF Win32}
sPath := '';
sLib := 'Lib';
case VerRq of
verD2..verD7: sPath := Format('SOFTWARE\Borland\Delphi\%d.0',[VerRq]);
verD8: sPath := 'SOFTWARE\Borland\BDS\2.0';
verD2005: sPath := 'SOFTWARE\Borland\BDS\3.0';
verD2006: sPath := 'SOFTWARE\Borland\BDS\4.0';
// verD2007: sPath := 'SOFTWARE\Borland\BDS\5.0'; This version was not detected
verD2009: sPath := 'SOFTWARE\CodeGear\BDS\6.0';
verD2010: sPath := 'SOFTWARE\CodeGear\BDS\7.0';
verD_XE: sPath := 'SOFTWARE\Embarcadero\BDS\8.0';
verD_XE2: sPath := 'SOFTWARE\Embarcadero\BDS\9.0';
verD_XE3: sPath := 'SOFTWARE\Embarcadero\BDS\10.0';
verD_XE4: sPath := 'SOFTWARE\Embarcadero\BDS\11.0';
verD_XE5: sPath := 'SOFTWARE\Embarcadero\BDS\12.0';
//verAppMethod: sPath := 'SOFTWARE\Embarcadero\BDS\13.0'; == verD_XE7
verD_XE6: sPath := 'SOFTWARE\Embarcadero\BDS\14.0';
verD_XE7: sPath := 'SOFTWARE\Embarcadero\BDS\15.0';
verD_XE8: sPath := 'SOFTWARE\Embarcadero\BDS\16.0';
verD_10: sPath := 'SOFTWARE\Embarcadero\BDS\17.0';
verD_10_1: sPath := 'SOFTWARE\Embarcadero\BDS\18.0';
verD_10_2: sPath := 'SOFTWARE\Embarcadero\BDS\19.0';
verD_10_3: sPath := 'SOFTWARE\Embarcadero\BDS\20.0';
else
Exit;
end ;
if RegOpenKeyEx(HKEY_CURRENT_USER, PChar(sPath), 0, KEY_READ, Key)<>ERROR_SUCCESS then
if RegOpenKeyEx(HKEY_LOCAL_MACHINE, PChar(sPath), 0, KEY_READ, Key)<>ERROR_SUCCESS then
Exit;
try
if RegQueryValueEx(Key, sRoot, nil, @DataType, nil, @DataSize)<>ERROR_SUCCESS then
Exit;
if DataType<>REG_SZ then
Exit;
if DataSize<=SizeOf(Char) then
Exit;
SetString(sRes, nil, (DataSize div SizeOf(Char)) - 1);
if RegQueryValueEx(Key, sRoot, nil, @DataType, PByte(sRes), @DataSize) <> ERROR_SUCCESS then
Exit;
finally
RegCloseKey(Key);
end ;
if sRes[Length(sRes)]<>DirSep then
sRes := sRes+DirSep;
if (VerRq>=verD_XE)and(VerRq<verK1) then begin
sLib := 'lib'+DirSep+sPlatformDir[PlatformRq]+DirSep;
if PreferDebugLib then
sLib := sLib+'debug'
else
sLib := sLib+'release';
end
else if PreferDebugLib and(VerRq>verD4) then
sLib := sLib+DirSep+'debug';
Result := sRes+sLib+DirSep;
{$ENDIF}
end ;
function IsDCPName(const S: String): Boolean;
var
Ext: String;
begin
Ext := ExtractFileExt(S);
Result := (CompareText(Ext,'.dcp')=0)or(CompareText(Ext,'.dcpil')=0);
end ;
function AddToPathList(S: String; SurePkg: boolean): integer;
begin
if S='' then begin
Result := -1;
Exit;
end ;
Result := PathList.IndexOf(S);
if Result>=0 then
Exit; {It may be wrong on Unix}
if SurePkg or IsDCPName(S) then begin
if FileExists(S) then begin
Result := PathList.AddObject(S,TDCPackage.Create);
Exit;
end ;
Result := -1;
if SurePkg then
Exit;
end ;
if not (AnsiLastChar(S)^ in [{$IFNDEF Linux}':',{$ENDIF} DirSep]) then
S := S + DirSep;
Result := PathList.Add(S);
end ;
procedure FindPackagesAndAddToPathList(const Mask: String);
var
SR: TSearchRec;
Path,Ext: String;
lExt: Integer;
begin
Ext := ExtractFileExt(Mask);
lExt := Length(Ext);
if SysUtils.FindFirst(Mask, faAnyFile, sr)<>0 then
Exit;
Path := ExtractFilePath(Mask);
repeat
if (sr.Attr and faDirectory)=0 then begin
Ext := ExtractFileExt(sr.Name);
if Length(Ext)=lExt then //Check that we don`t have .dcpil instead of .dcp
AddToPathList(Path+sr.Name,true{SurePkg});
end ;
until FindNext(sr) <> 0;
end ;
procedure SetPathList(const DirList: string);
var
I, P, L,hDir: Integer;
sDir: String;
CP: PChar;
begin
P := 1;
L := Length(DirList);
while True do
begin
while (P <= L) and (DirList[P] = PathSep) do
Inc(P);
if P > L then
Break;
I := P;
while (P <= L) and (DirList[P] <> PathSep) do begin
if DirList[P] in LeadBytes then
Inc(P);
Inc(P);
end;
sDir := Copy(DirList, I, P-I);
if sDir='' then
Continue {Paranoic};
CP := PChar(sDir);
if ((StrScan(CP,'*')<>Nil)or(StrScan(CP,'?')<>Nil))and IsDCPName(sDir) then begin
FindPackagesAndAddToPathList(sDir);
Continue;
end ;
hDir := AddToPathList(sDir,False{SurePkg});
if sDir='*' then
AutoLibDirNDX := hDir; //Mark the place to add the directory from registry
end;
end;
(*
function AllFilesSearch(Name: string; var DirList: string): string;
var
I, P, L: Integer;
begin
Result := Name;
P := 1;
L := Length(DirList);
while True do
begin
while (P <= L) and (DirList[P] = PathSep) do
Inc(P);
if P > L then
Break;
I := P;
while (P <= L) and (DirList[P] <> PathSep) do begin
if DirList[P] in LeadBytes then
Inc(P);
Inc(P);
end;
Result := Copy(DirList, I, P - I);
if not (AnsiLastChar(Result)^ in [{$IFNDEF Linux}':',{$ENDIF} DirSep]) then
Result := Result + DirSep;
Result := Result + Name;
if FileExists(Result) then begin
Delete(DirList,1,P+1);
Exit;
end ;
end;
Result := '';
DirList := '';
end;
*)
type
TDCUSearchRec = record
hPath: integer;
FN,UnitName: String;
Res: PDCPUnitHdr;
end ;
function InitDCUSearch(FN,FExt: String; var SR: TDCUSearchRec): boolean {HasPath};
var
Dir: String;
CP: PChar;
AddedUnitDir: boolean;
begin
FillChar(SR,SizeOf(TDCUSearchRec),0);
SR.FN := FN;
SR.hPath := -1;
Dir := ExtractFileDir(FN);
Result := Dir<>'';
AddedUnitDir := AddedUnitDirToPath;
if not AddedUnitDirToPath then begin
if (PASPath<>'*') then begin
if (PASPath='') then
PASPath := Dir
else
PASPath := Dir + PathSep + PASPath;
end ;
AddedUnitDirToPath := true;
end ;
CP := PChar(FN)+Length(Dir);
CP := StrScan(CP+1,PkgSep);
if CP<>Nil then begin
SetLength(FN,CP-PChar(FN)); //Package name with path
SR.hPath := AddToPathList(FN,true{SurePkg});
if SR.hPath>=0 then
SR.UnitName := StrPas(CP+1);
SR.UnitName := ChangeFileExt(SR.UnitName,'');
Exit;
end ;
{if ExtractFileExt(SR.FN)='' then
SR.FN := SR.FN+'.dcu';}
SR.UnitName := ExtractFileName(SR.FN);
SR.FN := SR.FN+FExt;
(*
if (DCUPath='') then
DCUPath := Dir
else
DCUPath := Dir + {$IFNDEF LINUX}';'{$ELSE}';'{$ENDIF}+DCUPath;
*)
if not AddedUnitDir then
AddToPathList(Dir,False{SurePkg});
if Dir='' then
SR.hPath := 0;
end ;
function FindDCU(var SR: TDCUSearchRec): String;
var
S: String;
Pkg: TDCPackage;
begin
Result := '';
SR.Res := Nil;
if SR.hPath<0 then begin
if FileExists(SR.FN) then
Result := SR.FN;
Exit;
end ;
if PathList=Nil then
Exit {Paranoic};
if SR.hPath>=PathList.Count then
SR.hPath := -1
else begin
S := PathList[SR.hPath];
Pkg := TDCPackage(PathList.Objects[SR.hPath]);
Inc(SR.hPath);
if Pkg=Nil then begin
if S='*'+DirSep then
Exit;
Result := S+SR.FN;
if FileExists(Result) then
Exit;
Result := '';
end
else if Pkg.Load(S,false) then begin
SR.Res := Pkg.GetFileByName(SR.UnitName);
if SR.Res<>Nil then
Result := S+PkgSep+SR.UnitName+ExtractFileExt(SR.FN);
end ;
end ;
end ;
var
UnitList: TStringList = Nil;
function GetUnitList: TStringList;
begin
if UnitList=Nil then begin
UnitList := TStringList.Create;
UnitList.Sorted := true;
UnitList.Duplicates := dupError;
end ;
Result := UnitList;
end ;
procedure RegisterUnit(const Name: String; U: TUnit);
var
UL: TStringList;
begin
UL := GetUnitList;
UL.AddObject(Name,U);
end ;
procedure NeedPathList;
begin
if PathList=Nil then begin
PathList := TStringList.Create;
SetPathList(DCUPath);
end ;
end;
function GetDCUByName(FName,FExt: String; VerRq: integer; MSILRq: boolean;
PlatformRq: TDCUPlatform; StampRq: integer): TUnit;
var
UL: TStringList;
NDX: integer;
U0: TUnit;
// SearchPath: String;
SR: TDCUSearchRec;
FN,UnitName: String;
HasPath: Boolean;
Cl: TUnitClass;
begin
UL := GetUnitList;
NeedPathList;
if (AutoLibDirNDX>=0)and(VerRq>0) then begin
FN := GetDelphiLibDir(VerRq,MSILRq,PlatformRq);
if (FN<>'')and(PathList.IndexOf(FN)>=0) then
FN := '';
if FN='' then
PathList.Delete(AutoLibDirNDX)
else begin
PathList[AutoLibDirNDX] := FN;
Writeln('Using Delphi lib: ',FN);
end ;
AutoLibDirNDX := -1; //Substitution for * had been made
end ;
{if not AddedUnitDirToPath then begin
AddUnitDirToPath(FName);
AddedUnitDirToPath := true;
end ;}
UnitName := ExtractFileNamePkg(FName);
HasPath := Length(UnitName)<Length(FName);
if HasPath or(FExt=''{FExt is not empty for the units from uses}) then
UnitName := ChangeFileExt(UnitName,'');
if not HasPath and(FUnitAliases<>Nil) then begin
FN := FUnitAliases.Values[UnitName{FName}];
if FN<>'' then begin
UnitName{FName} := FN;
FName{FName} := FN;
end ;
end ;
if IgnoreUnitStamps or not((VerRq>verD2){In Delphi 2.0 Stamp is not used}and
(VerRq<=verD7){The higher versions ignore the value too}or(VerRq>=verK1))
then
StampRq := 0;
if UL.Find(UnitName{FName},NDX) then
Result := TUnit(UL.Objects[NDX])
else begin
InitDCUSearch(FName,FExt,SR);
// SearchPath := DCUPath;
Result := Nil;
U0 := CurUnit;
try
FN := FName;
repeat
FName := FindDCU(SR);
if FName<>'' then begin
if VerRq=0 then
Cl := TopLevelUnitClass
else
Cl := TUnit;
Result := Cl.Create;
try
if Result.Load(FName,VerRq,MSILRq,PlatformRq,SR.Res) then begin
if (StampRq=0)or(StampRq=Result.Stamp)
then {Let`s check it here to try to find the correct stamp somewhere else}
break;
end;
except
on E: Exception do begin
if VerRq=0 then //Main Unit => reraise;
raise;
//The unit with the required version found, but it was wrong.
//Report the problem and stop the search
Writeln(Format('!!!%s: %s',[E.ClassName,E.Message]));
Result.Free;
Result := Nil;
break;
end ;
end ;
Result.Free;
Result := Nil;
end ;
until SR.hPath<0;
if Result<>Nil then
RegisterUnit(UnitName{Result.UnitName - some units in packages may have different source file name}, Result)
else
RegisterUnit(FN, Nil); //Means: don't seek this name again,
//It's supposed that FName is a unit name without path
finally
CurUnit := U0;
end ;
end ;
if Result=Nil then
Exit;
if (StampRq<>0)and(StampRq<>Result.Stamp) then
Result := Nil;
end ;
function GetDCUOfMemory(MemP: Pointer): TUnit;
var
UL: TStringList;
U: TUnit;
i: Integer;
begin
if MemP<>Nil then begin
if (CurUnit<>Nil)and CurUnit.IsValidMemPtr(MemP) then begin
Result := CurUnit;
Exit;
end ;
UL := GetUnitList;
for i:=0 to UL.Count-1 do begin
U := TUnit(UL.Objects[i]);
if (U<>Nil)and U.IsValidMemPtr(MemP) then begin
Result := U;
Exit;
end ;
end ;
end ;
Result := Nil;
end ;
procedure FreeDCU;
var
i: integer;
U: TUnit;
begin
if UnitList=Nil then
Exit;
for i:=0 to UnitList.Count-1 do begin
U := TUnit(UnitList.Objects[i]);
U.Free;
end ;
UnitList.Free;
UnitList := Nil;
FreePackages;
end ;
function FindPAS(FName: String): String;
var
S: String;
begin
if PASPath='*' then begin
Result := '';
Exit;
end ;
S := ExtractFilePath(FName);
if S<>'' then begin
if FileExists(FName) then begin
Result := FName;
Exit;
end ;
FName := ExtractFileName(FName);
end ;
Result := FileSearch(FName,PASPath);
end ;
procedure LoadSourceLines(const FName: String; Lines: TStrings);
var
S: String;
begin
S := FindPAS(FName);
if S='' then
Exit;
Lines.LoadFromFile(S);
end ;
procedure SetUnitAliases(const V: String);
var
CP,EP,NP: PChar;
S: String;
begin
if FUnitAliases<>Nil then
FUnitAliases.Clear;
if V='' then
Exit;
if FUnitAliases=Nil then
FUnitAliases := TStringList.Create;
CP := PChar(V);
repeat
NP := StrScan(CP,';');
if NP=Nil then
EP := StrEnd(CP)
else begin
EP := NP;
NP := EP+1;
end ;
SetString(S,CP,EP-CP);
if S<>'' then
FUnitAliases.Add(S);
CP := NP;
until CP=Nil;
end ;
function LoadPackage(const FName: String; IsMain: Boolean): TDCPackage;
var
hPkg: Integer;
begin
Result :=Nil;
NeedPathList;
hPkg := AddToPathList(FName,true{SurePkg});
if hPkg<0 then
Exit;
Result := TDCPackage(PathList.Objects[hPkg]);
if Result=Nil then
Exit;
if not Result.Load(FName,IsMain) then
Result := Nil;
end;
initialization
finalization
FUnitAliases.Free;
PathList.Free;
end.