CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: interconnect

  1. #1
    Join Date
    May 2011
    Posts
    23

    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?.

  2. #2
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,430

    Re: interconnect

    Victor Nijegorodov

  3. #3
    Join Date
    Nov 2000
    Location
    Voronezh, Russia
    Posts
    6,633

    Re: interconnect

    Quote Originally Posted by lch2 View Post
    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
  •  





Click Here to Expand Forum to Full Width

Featured