Dll Function Extractor
-
I have been given a VC++ 6 dll which has no documentation and no code. I need to find out what functions are available in this dll. Does anyone know of a utility somewhere that can show you the public functions of a dll? Something similar to Lutz Roeder's .NET Reflector[^], but for a VC++ 6 dll. Thanks, Mark Sanders
-
I have been given a VC++ 6 dll which has no documentation and no code. I need to find out what functions are available in this dll. Does anyone know of a utility somewhere that can show you the public functions of a dll? Something similar to Lutz Roeder's .NET Reflector[^], but for a VC++ 6 dll. Thanks, Mark Sanders
dumpbin /EXPORTS will do it. The Ten Commandments For C Programmers
-
dumpbin /EXPORTS will do it. The Ten Commandments For C Programmers
or the Dependency Walker tool that comes with VC 6