Link to home
Start Free TrialLog in
Avatar of Sektor
Sektor

asked on

Get DLL parameter description

I have a DLL file, for which I don't have source.
How can I find out, what functions does it contain, and what are calling conventions for them - parameter count and their data types.
Avatar of peterchen092700
peterchen092700

often asked, still not possible.

You *can* find out the names of exported functions, but that's all information "legally" available.

Everything else requires digging through the DLL trying to figure out what it expects from the disassembly. Something that *can* give you the number of params, and some basic information how it's processed, but there is no general solution.

ASKER CERTIFIED SOLUTION
Avatar of jhance
jhance

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial