How to get list of units in a Delphi Compiled Package (.dcp file) - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T18:32:39Zhttp://stackoverflow.com/feeds/question/445866http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/445866/how-to-get-list-of-units-in-a-delphi-compiled-package-dcp-file2How to get list of units in a Delphi Compiled Package (.dcp file)Ben Daniel2009-01-15T06:43:37Z2009-01-15T09:33:01Z
<p>Is there a way to list what units/classes are in a Delphi compiled package?</p>
http://stackoverflow.com/questions/445866/how-to-get-list-of-units-in-a-delphi-compiled-package-dcp-file/445924#4459240Answer by Robert MacLean for How to get list of units in a Delphi Compiled Package (.dcp file)Robert MacLean2009-01-15T07:26:37Z2009-01-15T07:26:37Z<p>Besides asking the developer or reading the documentation, the answer is No. </p>
http://stackoverflow.com/questions/445866/how-to-get-list-of-units-in-a-delphi-compiled-package-dcp-file/445981#4459812Answer by Vincent van der Vlis for How to get list of units in a Delphi Compiled Package (.dcp file)Vincent van der Vlis2009-01-15T08:07:25Z2009-01-15T08:07:25Z<p>Have you had a look at the TDUMP utility that is shipped with Delphi 7? A bpl is just a fancy DLL so you can list its exported functions:</p>
<p>e.g. </p>
<p>"C:\Program Files\Borland\Delphi7\Bin\TDUMP.EXE" AFWRTL_RD7.bpl</p>
<p>Turbo Dump Version 5.0.16.12 Copyright (c) 1988, 2000 Inprise Corporation</p>
<pre><code> Display of File AFWRTL_RD7.BPL
</code></pre>
<p>. . .</p>
<p>Exports from AFWRTL_RD7.bpl</p>
<p>91 exported name(s), 91 export addresse(s). Ordinal base is 1.</p>
<p>...</p>
<pre><code>000046B4 31 000A __fastcall Fgint::Base2StringToFGInt(System::AnsiString, Fgint::TFGInt&)
</code></pre>
<p>...</p>
<p>If you look at the exported functions, the name of the function seems to be prefixed with the unit or dependent package name, e.g. Fgint::Base2StringToFGInt is function Base2StringToFGInt in unit Fgint.pas.</p>
<p>Alternatively, have a look at the depends.exe utility that ships with the Windows Resource Kit. This provides a GUI to view the contents of a DLL (or BPL). </p>
<p>See</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=49ae8576-9bb9-4126-9761-ba8011fabf38&displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyID=49ae8576-9bb9-4126-9761-ba8011fabf38&displaylang=en</a></p>
<p>for more details.</p>
<p>Vince</p>
http://stackoverflow.com/questions/445866/how-to-get-list-of-units-in-a-delphi-compiled-package-dcp-file/446140#4461401Answer by TOndrej for How to get list of units in a Delphi Compiled Package (.dcp file)TOndrej2009-01-15T09:27:49Z2009-01-15T09:27:49Z<p>You could create a new package, add your .dcp to its requires clause, add a new unit to it and use code completion in the uses clause - it will show you all available units in all required packages. If your .dcp is the only required package and you set it to display sorted by scope (right-click in the dropdown) then the units from your .dcp should be on top.</p>
<p>I'm not sure if this works in Delphi 7 already. It works in Delphi 2007.</p>
http://stackoverflow.com/questions/445866/how-to-get-list-of-units-in-a-delphi-compiled-package-dcp-file/446154#4461540Answer by dmajkic for How to get list of units in a Delphi Compiled Package (.dcp file)dmajkic2009-01-15T09:33:01Z2009-01-15T09:33:01Z<p><a href="http://sourceforge.net/projects/jcl/" rel="nofollow">JCL</a> "uses expert" can show a lot right in the IDE.</p>