| 103 | } // end of CreateFileMap |
| 104 | |
| 105 | bool CloseMemMap(LPVOID memory, size_t dwSize) |
| 106 | { |
| 107 | return (memory) ? !UnmapViewOfFile(memory) : false; |
| 108 | } // end of CloseMemMap |
| 109 | |
| 110 | #else /* UNIX */ |
| 111 | // Code to handle Linux and Solaris |
no outgoing calls
no test coverage detected