I am using the tutorial on this MSDN link to implement a way of transferring data from one process to another. Although I was advised in an earlier question to use the Pipe meth
Under Windows 7 I found:
OpenFileMapping(FILE_MAP_ALL_ACCESS, ...);
Causes issues with:
CreateFileMapping( (HANDLE)0xFFFFFFFF, // use paging file
Try:
OpenFileMappingA(SECTION_MAP_WRITE | SECTION_MAP_READ,...);