Support Forums

Full Version: Need a DLL opener that allows you to edit
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello Support forums Big Grin

I'm learning C++ currently and was just looking for a program that would allow me to open up DLL 's and edit them. I tried DLL Export viewer but I really didn't even understand how that worked Tongue So if you guys could either help me with dll export viewer or if you could just give me another program that would be great thanks for the help guys Smile.

-Limitz-
PiratePiratePiratePiratePirate
If what you mean is you are trying to take a .dll file and turn it back into C++ Source code, I am sorry to report this is not exactly possible. When code is compiled into a .dll, it becomes machine code and can only be decompiled into assembly code and then somewhat translated into C++ source (but this is all very advanced stuff). If you want to see the inner workings of that DLL, you're going to have to get your hands on the source code.
Don't forget that converting a .dll like that could be illegal.