I'm very new to Memory Mapped Files, and I'm a little lost on something.
I know that if I had a file, I could load it and access it from various processes at once using MMaps.
But in my situation, I'm creating a DLL attached to Process A, and that DLL has been given a pointer to a cSurface which Process A has prepared. I need to share that cSurface's data with Process B. I really don't want to have to call up a blank MMap and copy my Process A's surface into it, only to copy it out again in process B.
Is it possible to map my surface as if it were a file so the MMap already points to the surface data when it's created (as it would were I loading SomeTextFile.txt)?
My plan, in theory, would be to receive a pointer to the surface in Proc A, tell windows to share that surface's memory with a given name, and use Mutexes to coordinate access - the idea being that both processes read the same physical copy of the surface with no cumbersome copying.
Is that possible?
char buffer[SUPER_MASSIVE]and a huge file calledhSuperMassiveFile. I could share SuperMassiveFile by doingCreateFileMapping( hSuperMassiveFile, ... ), but I'd like to do the same with my buffer. Is there some way to doCreateFileMapping( (HANDLE) buffer, ...)instead and share my buffer without having to request an empty map and thenCopyMemory()my buffer into it? – Chris D Jan 12 at 14:25