InterviewSolution
Saved Bookmarks
| 1. |
Solve : Solved - "Dissassembling a C++ .LIB or .OBJ"? |
|
Answer» Does anybody know how to disassemble a C++ .LIB or .OBJ file?you can use the dumpbin program to dissasemble a program. Here are a few I managed to dig up, Not sure if they'll work with OBJ or LIB.What links? Quote from: BC_Programmer on November 26, 2008, 01:18:47 AM Say- why do you want to dissassemble it anyway?To find the declaration of POW(), and a few other functions. lol. oops. I forget the link I had on my clipboard at that time. But another search found a program called "hackman" It claims to be able to dissasemble from OBJ and BIN. http://www.freewareweb.com/cgi-bin/archive.cgi?ID=185 Strictly speaking, "decompile" is the word, surely? decompile would turn it back into source code.so, technically, disassembling is a special case of decompiling, just into a particular language, ASM.Thanks, GUYS. |
|