vote up 1 vote down star

Is there any free native Windows DLL export functions viewer, which shows the function name, and a list of their parameters?

Thanks.

flag

3 Answers

vote up 3 vote down check

you can use Dependency Walker to view the function name. you can see the function's parameters only if it's decorated. read the following from the FAQ:

*How do I view the parameter and return types of a function? For most functions, this information is simply not present in the module. The Windows' module file format only provides a single text string to identify each function. There is no structured way to list the number of parameters, the parameter types, or the return type. However, some languages do something called function "decoration" or "mangling", which is the process of encoding information into the text string. For example, a function like int Foo(int, int) encoded with simple decoration might be exported as Foo@8. The 8 refers to the number of bytes used by the parameters. If C++ decoration is used, the function would be exported as ?Foo@@YGHHH@Z, which can be directly decoded back to the function's original prototype: int Foo(int, int). Dependency Walker supports C++ undecoration by using the Undecorate C++ Functions Command.

link|flag
Thanks, but when I try to open any DLL, it shows in the log window: Error: At least one module has an unresolved import due to a missing export function in an implicitly dependent module. Error: Modules with different CPU types were found. Warning: At least one delay-load dependency module was not found. Warning: At least one module has an unresolved import due to a missing export function in a delay-load dependent module. – Alon Oct 10 at 18:17
I'm using Windows 7 x64 Final. – Alon Oct 10 at 18:21
@Alon: Well, your application is quiet messed up :) the first error indicates that some of your dll's are compiled for 32bit systems and some for 64bit. you can only load dll's with the same CPU architecture in the same process. you can live with the other two errors as long as the application is handling them. – Moshe Levi Oct 10 at 18:25
BTW, Those errors should not disturb you to view the exported function of the DLL in question. you should just click on this DLL and It's exported function will show up in the right window. – Moshe Levi Oct 10 at 18:28
@Alon: I get those errors as well, for every DLL I ever look at. Just ignore them. – RichieHindle Oct 10 at 18:51
show 2 more comments
vote up 0 vote down

If you don't have the source code and API documentation, the machine code is all there is, you need to disassemble the dll library using something like IDA Pro , another option is use the trial version of PE Explorer.

PE Explorer provides a Disassembler. There is only one way to figure out the parameters: run the disassembler and read the disassembly output. Unfortunately, this task of reverse engineering the interface cannot be automated.

PE Explorer comes bundled with descriptions for 39 various libraries, including the core Windows® operating system libraries (eg. KERNEL32, GDI32, USER32, SHELL32, WSOCK32), key graphics libraries (DDRAW, OPENGL32) and more.

alt text

link|flag
vote up 0 vote down

Not sure about its parameters list, but following TotalCommander plugin is very useful.

link|flag
I'm not sure people want to download a binary without knowing exactly what it is. The plugin page is here: physio-a.univ-tours.fr/tcplugins – RedGlyph Oct 10 at 18:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.