I have an old DLL that stopped working (log2vis.dll) and I want to look inside it to see what objects it uses.
The DLL was written in C++ (not .NET). Is there a tool that will decompile/disassemble C++ files?
views:
5107answers:
5
+9
A:
This might be impossible or at least very hard. The DLL's contents don't depend (a lot) on it being written in C++; it's all machine code. That code might have been optimized so a lot of information that was present in the original source code is simply gone.
That said, here is one article that goes through a lot of material about doing this.
unwind
2009-08-24 12:51:53
+1
A:
I think a C++ DLL is a machine code file. Therefore decompiling will only result in assembler code. If you can read that and create C++ from that your good to go.
PoweRoy
2009-08-24 12:52:22
+1
A:
There are no decompilers which I know about. W32dasm is good Win32 disassembler.
Szczepan
2009-08-24 12:53:34
why the downvote?
yeyeyerman
2009-08-24 13:04:58