Is it possible to get an exported (C style?) function\'s signature (parameter count/types, return type) from a DLL? I can view the list of function names, addresses, ordinal
For C functions, this information is not stored in the DLL at all. The only thing I can suggest is to disassemble the function and look at how it interacts with variables on the stack and then try to determine the signature.