How to get list of units in a Delphi Compiled Package (.dcp file) - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T18:32:39Z http://stackoverflow.com/feeds/question/445866 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/445866/how-to-get-list-of-units-in-a-delphi-compiled-package-dcp-file 2 How to get list of units in a Delphi Compiled Package (.dcp file) Ben Daniel 2009-01-15T06:43:37Z 2009-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#445924 0 Answer by Robert MacLean for How to get list of units in a Delphi Compiled Package (.dcp file) Robert MacLean 2009-01-15T07:26:37Z 2009-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#445981 2 Answer by Vincent van der Vlis for How to get list of units in a Delphi Compiled Package (.dcp file) Vincent van der Vlis 2009-01-15T08:07:25Z 2009-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&amp;) </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&amp;displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyID=49ae8576-9bb9-4126-9761-ba8011fabf38&amp;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#446140 1 Answer by TOndrej for How to get list of units in a Delphi Compiled Package (.dcp file) TOndrej 2009-01-15T09:27:49Z 2009-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#446154 0 Answer by dmajkic for How to get list of units in a Delphi Compiled Package (.dcp file) dmajkic 2009-01-15T09:33:01Z 2009-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>