Click here to Skip to main content
15,896,912 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How do we create a patch which can replace a dll of my application
Posted
Comments
bbirajdar 7-Aug-12 14:11pm    
Copy > Paste >Overwrite > Yes...

1 solution

As long as the classes/functions being used haven't changed signatures, you should be able to just drop in a new DLL with whatever changes needed.

i.e. if you have a function like this in the DLL: F(int first, int second) you're fine as long as you don't change it to F(int first, int second, int third) (unless it's never called of course).
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900