Link to home
Start Free TrialLog in
Avatar of mahdiparak
mahdiparak

asked on

add function to Compiled exe

hi
can show me a source code for add a function from a Dll into a Compiled exe?
Avatar of e_tadeu
e_tadeu

Do you have the source code for this exe?
If the exe is compiled, it's very, very difficult to change it. Doing so requires use of assembly language, where you patch existing code to call your new segment, and this has to be loaded correctly and the error-checking has to manage it too.

If you have the source code, it's easy enough, but I don't think that's the case here.

Why do you want to do this? If you explain your requirements more fully, we may be able to provide a reasonable solution.
>> can show me a source code for add a function from a Dll into a Compiled exe?
Are you trying to ask something else ?
ASKER CERTIFIED SOLUTION
Avatar of bdunz19
bdunz19

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
For more detailed information on this subject refer to this web page:

http://en.wikipedia.org/wiki/Dynamic_link_library

Regards,
Brandon