diff options
Diffstat (limited to 'thirdparty/etcpak/mmap.hpp')
-rw-r--r-- | thirdparty/etcpak/mmap.hpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/thirdparty/etcpak/mmap.hpp b/thirdparty/etcpak/mmap.hpp new file mode 100644 index 0000000000..e4cfe7759c --- /dev/null +++ b/thirdparty/etcpak/mmap.hpp @@ -0,0 +1,19 @@ +#ifndef __MMAP_HPP__ +#define __MMAP_HPP__ + +#ifndef _WIN32 +# include <sys/mman.h> +#else +# include <string.h> +# include <sys/types.h> + +# define PROT_READ 1 +# define PROT_WRITE 2 +# define MAP_SHARED 0 + +void* mmap( void* addr, size_t length, int prot, int flags, int fd, off_t offset ); +int munmap( void* addr, size_t length ); + +#endif + +#endif |