I have a compiled C/C++ Dll.
I would like to know which external API function is called by this Dll.
Do you know any tools which can provide these informations.
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use Dependency Walker to see API imports of a DLL. Of course that doesn’t tell you if the DLL does dynamic loading, or COM usage.
Next to that you could use the much heavier logexts extension to windbg, which will dump all API calls at runtime.