LoadLibrary() an EXE?

后端 未结 3 697
北恋
北恋 2020-12-03 11:09

I have an executable (that I created using Visual C++ 10), and I need to use its capabilities from another program I wrote (same environment). Due to complex deployment requ

3条回答
  •  情话喂你
    2020-12-03 12:02

    Yes it is possible.

    http://www.codeproject.com/Articles/1045674/Load-EXE-as-DLL-Mission-Possible

    The idea is a) to patch the IAT and b) to call the CRT before calling your exports.

提交回复
热议问题