File tree Expand file tree Collapse file tree 11 files changed +1531
-171
lines changed Expand file tree Collapse file tree 11 files changed +1531
-171
lines changed Original file line number Diff line number Diff line change 3
3
<PROJECT >
4
4
<MACROS >
5
5
<VERSION value =" BCB.06.00" />
6
- <PROJECT value =" C:\PAPA\IDR\bin\ Idr.exe" />
6
+ <PROJECT value =" C:\PAPA\IDR\Idr.exe" />
7
7
<OBJFILES value =" obj\Idr.obj obj\Main.obj obj\TypeInfo.obj obj\StringInfo.obj
8
8
obj\Explorer.obj obj\KnowledgeBase.obj obj\Disasm.obj obj\Threads.obj
9
9
obj\InputDlg.obj obj\FindDlg.obj obj\Infos.obj obj\EditFunctionDlg.obj
@@ -203,10 +203,13 @@ Item0=obj
203
203
Item1=C:\Program Files\Borland\CBuilder6\Projects\IDR
204
204
205
205
[HistoryLists\hlFinalOutputDir]
206
- Count=3
207
- Item0=C:\PAPA\IDR\bin
208
- Item1=G:\IDR\
209
- Item2=G:\IDR
206
+ Count=6
207
+ Item0=C:\PAPA\IDR\
208
+ Item1=C:\PAPA\IDR
209
+ Item2=C:\PAPA\IDR\bin\
210
+ Item3=C:\PAPA\IDR\bin
211
+ Item4=G:\IDR\
212
+ Item5=G:\IDR
210
213
211
214
[Debugging]
212
215
DebugSourceDirs=$(BCB)\source\vcl
Original file line number Diff line number Diff line change @@ -21,25 +21,6 @@ extern char StringBuf[MAXSTRBUFFER];
21
21
// as some statistics for memory leaks detection (remove it when fixed)
22
22
long stat_InfosOverride = 0 ;
23
23
// ---------------------------------------------------------------------------
24
- int __fastcall FieldsCmpFunction (void *item1, void *item2)
25
- {
26
- PFIELDINFO rec1 = (PFIELDINFO)item1;
27
- PFIELDINFO rec2 = (PFIELDINFO)item2;
28
- if (rec1->Offset > rec2->Offset ) return 1 ;
29
- if (rec1->Offset < rec2->Offset ) return -1 ;
30
- return 0 ;
31
- }
32
- // ---------------------------------------------------------------------------
33
- int __fastcall LocalsCmpFunction (void *item1, void *item2)
34
- {
35
- PLOCALINFO rec1 = (PLOCALINFO)item1;
36
- PLOCALINFO rec2 = (PLOCALINFO)item2;
37
-
38
- if (rec1->Ofs > rec2->Ofs ) return 1 ;
39
- if (rec1->Ofs < rec2->Ofs ) return -1 ;
40
- return 0 ;
41
- }
42
- // ---------------------------------------------------------------------------
43
24
__fastcall InfoVmtInfo::InfoVmtInfo ()
44
25
{
45
26
interfaces = 0 ;
You can’t perform that action at this time.
0 commit comments