|
-
May 11th, 2012, 05:06 PM
#1
interconnect
in my vs executable I like to be able to access a function of another executable which may be written in another IDE, and access its memory buffer. Like,to read its memory buffer after it is filled with new data. Is this easily possible?. this interconnet pipe may save me some development time. any code that can do this?.
-
May 11th, 2012, 05:12 PM
#2
Re: interconnect
Victor Nijegorodov
-
May 11th, 2012, 11:33 PM
#3
Re: interconnect
 Originally Posted by lch2
in my vs executable I like to be able to access a function of another executable which may be written in another IDE, and access its memory buffer. Like,to read its memory buffer after it is filled with new data. Is this easily possible?. this interconnet pipe may save me some development time. any code that can do this?.
This is not how Windows works. You cannot call other process function directly. You cannot read other process memory directly. To exchange data the processes must intentionally establish some protocol on using IPC mechanisms. To perform some code execution on behalf of remote process some procedure invocation protocol must be established.
Best regards,
Igor
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|