Function signature
-
I want to use some functions exported from a dll, but I don't have the documentation or the header file. I can get the names of the exported functions by using dumpbin, but how do I determine the function parameters?
-
I want to use some functions exported from a dll, but I don't have the documentation or the header file. I can get the names of the exported functions by using dumpbin, but how do I determine the function parameters?
Guess... That's the only way ;) - Anders Money talks, but all mine ever says is "Goodbye!"
-
I want to use some functions exported from a dll, but I don't have the documentation or the header file. I can get the names of the exported functions by using dumpbin, but how do I determine the function parameters?
If the function name is mangled, you can demangle it using UNDNAME.EXE.
You should save yourself and your company years of grief by shooting yourself through the head immediately. Believe me, in the long run it'll turn out better for everyone. - Tyto (at arstechnica) Awasu 1.0[^]: A free RSS reader with support for Code Project.
-
If the function name is mangled, you can demangle it using UNDNAME.EXE.
You should save yourself and your company years of grief by shooting yourself through the head immediately. Believe me, in the long run it'll turn out better for everyone. - Tyto (at arstechnica) Awasu 1.0[^]: A free RSS reader with support for Code Project.
Thanks. Actually, it's a C dll, so the names aren't mangled. I wish the function names were mangled, then I could find out the parameters using the latest version of Depends.exe. Unfortunently, I think Anders is correct, I have to guess or get knee deep into the disassembled ASM. Thanks for your help.;)