| Adikish (6) | |
| i am using visual studio 2010 for my work. Which header file contains the mmap and munmap functions? i am trying to map a file into the memory. | |
|
|
|
| kbw (5517) | |
|
None. Those are POSIX functions. If you want to use shared memory, you'll need CreateFileMapping() and MapViewOfFile(). Google for an example. | |
|
|
|