Is it possible to share a memory region between an application compiled with MinGW and one with Visual Studio ?
I am relying on boost interprocess:
shared_memory_object shm (create_only, "MySharedMemory", read_write);
shm.truncate(1000);
mapped_region region(shm, read_write);
int *pi = (int *)region.get_address();
I already realized that this is not possible via Cygwin, as the boost shared_memory_object is then created via the Cygwin posix layer.