which header file contains mmap and munmap?

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.
None. Those are POSIX functions.

If you want to use shared memory, you'll need CreateFileMapping() and MapViewOfFile().

Google for an example.
Topic archived. No new replies allowed.