Link to home
Start Free TrialLog in
Avatar of Tuan_Jean
Tuan_JeanFlag for Australia

asked on

Is reverse a Visual C++ .dll file possible?

Hi!

I inherit an old .dll file written in Visual C++ and I could not locate the code nor any documentation. Is there a way to reverse engineer .dll file into original source code?

Thank you.
Avatar of Jaime Olivares
Jaime Olivares
Flag of Peru image

> Is there a way to reverse engineer .dll file into original source code?
Absolutely not, reverse engineer won't give you back variable names and function names (with exception of exportable functions)

Avatar of Tuan_Jean

ASKER

Thank you for the prompt response. So, basically I am stuck? What will be the best I could achieve out of this "black-box"?
The best you can have are exportable function names.
But I am sure will not be hard to build your own DLL. What does it?
Basically, I was pull in in middle of a project that has this small dll file and no one really know how it is related to the rest of other systems.

I could only get up to the assembly code so far.

Thank you

ASKER CERTIFIED SOLUTION
Avatar of Jaime Olivares
Jaime Olivares
Flag of Peru image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial