Click to See Complete Forum and Search --> : Dubugging/editing .dll files


j_hareesh
November 10th, 2002, 06:58 AM
I want to edit a .dll file created by a third party ..is there any tool for that...please send me details...

galathaea
November 10th, 2002, 03:04 PM
1) Add functions -- just make new dll
2) Remove functions -- just don't call them
3) Wrap function calls with pre/post processing -- just use a new dll which calls the old dll appropriately
4) Change how a function works -- your stuck with assembly

if you wanted option 4, get yourself a good PE disassembler that lets you create tags for function call / code jump locations and variable memory on the stack as you figure out what each thing is being used for.