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

Thread: Shared Memory

  1. #1
    Join Date
    May 1999
    Posts
    1

    Shared Memory

    having allocated a block of memory in one process,
    I want to access it in another process. But I don't want
    to use mapping file or WM_COPYDATA. How can i?
    Thanks.



  2. #2
    Join Date
    May 1999
    Posts
    8

    Re: Shared Memory

    Refer to Advanced Windows. It is very helpful to you.

    If you want to use a variable memory block so that two processes share any data, you'd better use memory-mapped file.
    But if you want to use a fixed memory block, you can use shared data section.



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