vote up 1 vote down star

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?

flag

Possible dupe: stackoverflow.com/questions/560344/… – Preet Sangha Aug 24 at 12:54

5 Answers

vote up 1 vote down

How about this ?

link|flag
vote up 0 vote down

There is no decompilers wich i know abaut . W32dasm is good win32 didassembler

link|flag
2  
why the downvote? – yeyeyerman Aug 24 at 13:04
vote up 3 vote down

There really isn't any way of doing this as most of the useful information is discarded in the compilation process. However, you may want to take a look at this site to see if you can find some way of extracting something from the DLL.

link|flag
vote up 1 vote down

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.

link|flag
vote up 8 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.