How do you see which functions in a dynamic library

xiaoxiao2021-03-06  94

Q: How do I see which functions in a dynamic library?

A: If you want to call the DLL function if you don't have any instructions, you will not succeed, because only the name of the function is included in the DLL, does not include the parameters of the function and the information such as the call method. Using the VC's Dumpbin (in the Bin Directory) or Delphi's TDUMP, you can get which functions included in the DLL, but these functions are meaningful, how to call is unknown.

example:

Use TDUMP.EXE (in Delphi7) to export the DLL information to other files. usage:

TDUMP my.dll a.txt

oral

TDUMP My.dll> a.txt

Then you can view a.txt file

转载请注明原文地址:https://www.9cbs.com/read-106621.html

New Post(0)