DepTool
The program deptool.exe is a small front end onto the DepDB module. It takes as parameters a directory containing Symbian OS exe/dlls and a name of a text output file. The DepDB module will analysis the .lib and .exe/.dll files to determine what is being imported and what is being exported. A report is of this info is then placed into the output file.
Usage
Usage:
deptool <directory paths> <output file>
Arguments:
directory path. The name of a dir containing the exe/dll's
output file, Please ensure that this file ends with a .txt extension. Otherwise the output will take the form for a perl binary data dump.
Alternatively, you may want to directly use the Perl version to integrate it in your own set of tools:
my $depDB = DepDb->New($dir);
$depDb->DumpTxt();
open (OUT, ">$filename");
*STDOUT = *OUT;
$depDb->DumpTxt();
This file is installed in directory C:\Program Files\Common Files\Symbian\Tools\ so check that this directory is in your path to be able to use it.
Supported Platforms
Windows Perl
Linux Perl
(Requires Perl Version 5.6 or higher)
Copyright
Copyright (c) 2003 Symbian Ltd. All rights reserved.
Download
From Symbian OS Tools page on Symbian web site: http://www.symbian.com/developer/do...





