]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/winapi/page_protection_flags.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / boost / winapi / page_protection_flags.hpp
1 /*
2 * Copyright 2016 Andrey Semashev
3 *
4 * Distributed under the Boost Software License, Version 1.0.
5 * See http://www.boost.org/LICENSE_1_0.txt
6 */
7
8 #ifndef BOOST_WINAPI_PAGE_PROTECTION_FLAGS_HPP_INCLUDED_
9 #define BOOST_WINAPI_PAGE_PROTECTION_FLAGS_HPP_INCLUDED_
10
11 #include <boost/winapi/basic_types.hpp>
12
13 #ifdef BOOST_HAS_PRAGMA_ONCE
14 #pragma once
15 #endif
16
17 namespace boost {
18 namespace winapi {
19
20 #if defined( BOOST_USE_WINDOWS_H )
21
22 const DWORD_ PAGE_NOACCESS_ = PAGE_NOACCESS;
23 const DWORD_ PAGE_READONLY_ = PAGE_READONLY;
24 const DWORD_ PAGE_READWRITE_ = PAGE_READWRITE;
25 const DWORD_ PAGE_WRITECOPY_ = PAGE_WRITECOPY;
26 const DWORD_ PAGE_GUARD_ = PAGE_GUARD;
27 const DWORD_ PAGE_NOCACHE_ = PAGE_NOCACHE;
28 const DWORD_ PAGE_WRITECOMBINE_ = PAGE_WRITECOMBINE;
29
30 #else // defined( BOOST_USE_WINDOWS_H )
31
32 const DWORD_ PAGE_NOACCESS_ = 0x01;
33 const DWORD_ PAGE_READONLY_ = 0x02;
34 const DWORD_ PAGE_READWRITE_ = 0x04;
35 const DWORD_ PAGE_WRITECOPY_ = 0x08;
36 const DWORD_ PAGE_GUARD_ = 0x100;
37 const DWORD_ PAGE_NOCACHE_ = 0x200;
38 const DWORD_ PAGE_WRITECOMBINE_ = 0x400;
39
40 #endif // defined( BOOST_USE_WINDOWS_H )
41
42 // The PAGE_EXECUTE flags were put into the DESKTOP UWP partition in Windows SDK 8.0 and 8.1
43 // and then moved to be globally available again in SDK 10.0. Due to this, we simply define
44 // them unconditionally to work around the issue and consider the 8.x SDKs in error.
45
46 const DWORD_ PAGE_EXECUTE_ = 0x10;
47 const DWORD_ PAGE_EXECUTE_READ_ = 0x20;
48 const DWORD_ PAGE_EXECUTE_READWRITE_ = 0x40;
49 const DWORD_ PAGE_EXECUTE_WRITECOPY_ = 0x80;
50
51 }
52 }
53
54 #endif // BOOST_WINAPI_PAGE_PROTECTION_FLAGS_HPP_INCLUDED_