How to find out which Win API functions are called from a compiled c/c++ dll
问题 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. 回答1: 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. 回答2: Use the dumpbin utility with the /imports command-line option.