How can I run an executable from RAM using C++?

前端 未结 5 1758
一整个雨季
一整个雨季 2021-02-09 06:42

How can I run an executable from RAM using C++?

The executable is in RAM, and I know the address, how do I call into the program from mine?

5条回答
  •  鱼传尺愫
    2021-02-09 07:13

    You mean communicating with another application that is running at the same time as yours? That depends on which operating system you are using. In any case, Wikipedia has an article on Interprocess Communication, which shows some basic techniques.

提交回复
热议问题