/usr/include/boost/winapi
NameSizeModeActions
detail/-0755rm
access_rights.hpp30530644editdlrm
apc.hpp11590644editdlrm
basic_types.hpp68750644editdlrm
bcrypt.hpp20790644editdlrm
character_code_conversion.hpp37380644editdlrm
condition_variable.hpp38590644editdlrm
config.hpp105870644editdlrm
critical_section.hpp79010644editdlrm
crypt.hpp59470644editdlrm
dbghelp.hpp65710644editdlrm
debugapi.hpp13740644editdlrm
directory_management.hpp34010644editdlrm
dll.hpp58530644editdlrm
environment.hpp44310644editdlrm
error_codes.hpp2186080644editdlrm
error_handling.hpp52700644editdlrm
event.hpp74170644editdlrm
file_management.hpp220140644editdlrm
file_mapping.hpp96540644editdlrm
get_current_process.hpp8740644editdlrm
get_current_process_id.hpp8540644editdlrm
get_current_thread.hpp8680644editdlrm
get_current_thread_id.hpp8820644editdlrm
get_last_error.hpp7610644editdlrm
get_process_times.hpp15530644editdlrm
get_proc_address.hpp24890644editdlrm
get_system_directory.hpp14650644editdlrm
get_thread_times.hpp14500644editdlrm
handles.hpp24910644editdlrm
handle_info.hpp14710644editdlrm
heap_memory.hpp23250644editdlrm
init_once.hpp40940644editdlrm
jobs.hpp55870644editdlrm
limits.hpp12780644editdlrm
local_memory.hpp17640644editdlrm
memory.hpp4550644editdlrm
mutex.hpp63390644editdlrm
overlapped.hpp9500644editdlrm
page_protection_flags.hpp20230644editdlrm
pipes.hpp112310644editdlrm
priority_class.hpp26990644editdlrm
process.hpp196530644editdlrm
security.hpp25740644editdlrm
semaphore.hpp67570644editdlrm
shell.hpp60910644editdlrm
show_window.hpp42000644editdlrm
srw_lock.hpp33430644editdlrm
stack_backtrace.hpp15020644editdlrm
synchronization.hpp8230644editdlrm
system.hpp21440644editdlrm
thread.hpp12300644editdlrm
thread_pool.hpp53260644editdlrm
time.hpp44770644editdlrm
timers.hpp12480644editdlrm
tls.hpp15940644editdlrm
wait.hpp25730644editdlrm
waitable_timer.hpp50660644editdlrm
wait_constants.hpp16510644editdlrm
wait_on_address.hpp14410644editdlrm
Edit: /usr/include/boost/winapi/page_protection_flags.hpp (2023B)
/* * Copyright 2016 Andrey Semashev * * Distributed under the Boost Software License, Version 1.0. * See http://www.boost.org/LICENSE_1_0.txt */ #ifndef BOOST_WINAPI_PAGE_PROTECTION_FLAGS_HPP_INCLUDED_ #define BOOST_WINAPI_PAGE_PROTECTION_FLAGS_HPP_INCLUDED_ #include #include #ifdef BOOST_HAS_PRAGMA_ONCE #pragma once #endif namespace boost { namespace winapi { #if defined( BOOST_USE_WINDOWS_H ) BOOST_CONSTEXPR_OR_CONST DWORD_ PAGE_NOACCESS_ = PAGE_NOACCESS; BOOST_CONSTEXPR_OR_CONST DWORD_ PAGE_READONLY_ = PAGE_READONLY; BOOST_CONSTEXPR_OR_CONST DWORD_ PAGE_READWRITE_ = PAGE_READWRITE; BOOST_CONSTEXPR_OR_CONST DWORD_ PAGE_WRITECOPY_ = PAGE_WRITECOPY; BOOST_CONSTEXPR_OR_CONST DWORD_ PAGE_GUARD_ = PAGE_GUARD; BOOST_CONSTEXPR_OR_CONST DWORD_ PAGE_NOCACHE_ = PAGE_NOCACHE; BOOST_CONSTEXPR_OR_CONST DWORD_ PAGE_WRITECOMBINE_ = PAGE_WRITECOMBINE; #else // defined( BOOST_USE_WINDOWS_H ) BOOST_CONSTEXPR_OR_CONST DWORD_ PAGE_NOACCESS_ = 0x01; BOOST_CONSTEXPR_OR_CONST DWORD_ PAGE_READONLY_ = 0x02; BOOST_CONSTEXPR_OR_CONST DWORD_ PAGE_READWRITE_ = 0x04; BOOST_CONSTEXPR_OR_CONST DWORD_ PAGE_WRITECOPY_ = 0x08; BOOST_CONSTEXPR_OR_CONST DWORD_ PAGE_GUARD_ = 0x100; BOOST_CONSTEXPR_OR_CONST DWORD_ PAGE_NOCACHE_ = 0x200; BOOST_CONSTEXPR_OR_CONST DWORD_ PAGE_WRITECOMBINE_ = 0x400; #endif // defined( BOOST_USE_WINDOWS_H ) // The PAGE_EXECUTE flags were put into the DESKTOP UWP partition in Windows SDK 8.0 and 8.1 // and then moved to be globally available again in SDK 10.0. Due to this, we simply define // them unconditionally to work around the issue and consider the 8.x SDKs in error. BOOST_CONSTEXPR_OR_CONST DWORD_ PAGE_EXECUTE_ = 0x10; BOOST_CONSTEXPR_OR_CONST DWORD_ PAGE_EXECUTE_READ_ = 0x20; BOOST_CONSTEXPR_OR_CONST DWORD_ PAGE_EXECUTE_READWRITE_ = 0x40; BOOST_CONSTEXPR_OR_CONST DWORD_ PAGE_EXECUTE_WRITECOPY_ = 0x80; } } #include #endif // BOOST_WINAPI_PAGE_PROTECTION_FLAGS_HPP_INCLUDED_