Microsoft Visual C++ 6.0

EthixusTheGreat

New Member
is there a program/way to take a application that was made on Microsoft Visual C++ 6.0 and get the C++ Source file out of it... does anyone know what i mean?
 
You mean to reverse-engineer i think, as far as i know it is possible, but complex, and in some (many?) cases illegal.
 
ahhh nooo i was working on a project on it and a bunch of stuff got deleted and all i have left is my application

isn't there a way i can work on it still?
like something that will make a C++ source file out of it???
 
I don't think there is easily, there may be a way but since the application is compiled it will be much harder
 
There are some unassemblers that will try and make C code out of what it gets but most will give you some UGLY assembler back. You can work your way back from there but it's so much work for even a small app your better off rewriting. If you have the intermediate files still you may be able to get something to reverse those.
 
Back
Top