diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-04-13 01:09:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-13 01:09:38 +0200 |
commit | 8793a464d312c5a48490fbec03c26f2835318063 (patch) | |
tree | 8be39ad26992b0bc10ee69fef5f0c5cadb6a0760 /thirdparty/etcpak/mmap.hpp | |
parent | 075f358fcddbb3df8417ef85baabdf3684a4efd2 (diff) | |
parent | d840165a324b5c218ca3a4882f030986855c8383 (diff) |
Merge pull request #47370 from fire/etcpak
Add thirdparty library etcpak for faster imports.
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 |