diff options
Diffstat (limited to 'thirdparty/raw_pdb/src/Examples/ExampleMemoryMappedFile.h')
| -rw-r--r-- | thirdparty/raw_pdb/src/Examples/ExampleMemoryMappedFile.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/thirdparty/raw_pdb/src/Examples/ExampleMemoryMappedFile.h b/thirdparty/raw_pdb/src/Examples/ExampleMemoryMappedFile.h new file mode 100644 index 000000000..c14575336 --- /dev/null +++ b/thirdparty/raw_pdb/src/Examples/ExampleMemoryMappedFile.h @@ -0,0 +1,29 @@ +// Copyright 2011-2022, Molecular Matters GmbH <[email protected]> +// See LICENSE.txt for licensing details (2-clause BSD License: https://opensource.org/licenses/BSD-2-Clause) + +#ifndef _WIN32 +#include <sys/mman.h> +#include <sys/stat.h> +#include <fcntl.h> +#include <unistd.h> + +#define INVALID_HANDLE_VALUE ((long)-1) +#endif + +namespace MemoryMappedFile +{ + struct Handle + { +#ifdef _WIN32 + void* file; + void* fileMapping; +#else + int file; +#endif + void* baseAddress; + size_t len; + }; + + Handle Open(const char* path); + void Close(Handle& handle); +} |