>Is there a program to view all the functions in a dll ? For example assume
>that I want to see all the available functions in kernel32.dll...
Dumpbin.exe (with its /exports option) and Depends.exe are two tools
included with Visual Studio that does that.
Mattias

Signature
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
Gabriel Lozano-Morán - 25 Nov 2005 20:19 GMT
I guess it is not possible to view parameter info and return value without
the header files? I need to figure out if I can automate some tasks in a
certain application that has no COM components. This application has two
windows one contains data and the other contains a 3D model representing the
data. I want to hook to events triggered by the 3D model when the user
clicks on certain points. The problem is that the data in the first window
does not automatically select the row.
Anyway I had to figure out if it was possible in 5 days :-s but I guess my
answer to my boss will be "no" :)
Gabriel Lozano-Morán