What tool can decompile a DLL into C++ source code?

Lea Cohen picture Lea Cohen · Aug 24, 2009 · Viewed 239.5k times · Source

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?

Answer

unwind picture unwind · Aug 24, 2009

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.