is have *.def in this directory?
open *.def file and find below:
@SomeNumber SomeFunction(..)
it is APIs of this dll file.
VC6中有一个dumpbin.exe它可以看出一个动态库(*.dll,*.exe)中
的有那些函数,你可以使用它带着/export:输出文件名,而后即可调用
这些函数完成你需要的功能.
76697关注!