Get signatures of exported functions in a DLL

后端 未结 3 990
你的背包
你的背包 2020-12-01 15:55

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

3条回答
  •  栀梦
    栀梦 (楼主)
    2020-12-01 16:51

    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.

    Good luck!

提交回复
热议问题