How to list the exported functions in a dll?
I have for some time ago created a simple dll . Now, I want to access some of the exported functions in it and I do not have the source code for it here.
Is there any tool I can run which will tell me the content of a dll?
[226 byte] By [
Divad] at [2007-11-20 11:51:16]

# 2 Re: How to list the exported functions in a dll?
I have for some time ago created a simple dll . Now, I want to access some of the exported functions in it and I do not have the source code for it here.
Is there any tool I can run which will tell me the content of a dll?
Hi..
One more option.. is to use dumpbin command line utilitly... It is distribute along with Visual Studio >= 2002.. open the Visual Studio .Net command prompt.. and type dumpbin /exports URDLL.. will lists the exports of ur binary...
Thanx