How correctly open/use file mapping on Windows with ability to write to it from another process without file mapping;
For example process A writes big log file, it open file, write new data to the end, or rewrite it with new data.
Process B in parallel open this file as file mapping and from time to time read memory pages for updates without closing file mapping.
Please don't ask why I wanna to do logic I explained above. I need to know could it be done?