/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/handles.hpp (2491B)
/* * Copyright 2010 Vicente J. Botet Escriba * Copyright 2015 Andrey Semashev * * Distributed under the Boost Software License, Version 1.0. * See http://www.boost.org/LICENSE_1_0.txt */ #ifndef BOOST_WINAPI_HANDLES_HPP_INCLUDED_ #define BOOST_WINAPI_HANDLES_HPP_INCLUDED_ #include #include #ifdef BOOST_HAS_PRAGMA_ONCE #pragma once #endif #if !defined( BOOST_USE_WINDOWS_H ) extern "C" { BOOST_WINAPI_IMPORT_EXCEPT_WM boost::winapi::BOOL_ BOOST_WINAPI_WINAPI_CC CloseHandle(boost::winapi::HANDLE_ handle); BOOST_WINAPI_IMPORT_EXCEPT_WM boost::winapi::BOOL_ BOOST_WINAPI_WINAPI_CC DuplicateHandle( boost::winapi::HANDLE_ hSourceProcessHandle, boost::winapi::HANDLE_ hSourceHandle, boost::winapi::HANDLE_ hTargetProcessHandle, boost::winapi::HANDLE_* lpTargetHandle, boost::winapi::DWORD_ dwDesiredAccess, boost::winapi::BOOL_ bInheritHandle, boost::winapi::DWORD_ dwOptions); #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN10 BOOST_WINAPI_IMPORT boost::winapi::BOOL_ BOOST_WINAPI_WINAPI_CC CompareObjectHandles( boost::winapi::HANDLE_ hFirstObjectHandle, boost::winapi::HANDLE_ hSecondObjectHandle); #endif } // extern "C" #endif namespace boost { namespace winapi { using ::CloseHandle; using ::DuplicateHandle; #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN10 using ::CompareObjectHandles; #endif // Note: MSVC-14.1 does not interpret INVALID_HANDLE_VALUE_ initializer as a constant expression #if defined( BOOST_USE_WINDOWS_H ) BOOST_CONSTEXPR_OR_CONST DWORD_ DUPLICATE_CLOSE_SOURCE_ = DUPLICATE_CLOSE_SOURCE; BOOST_CONSTEXPR_OR_CONST DWORD_ DUPLICATE_SAME_ACCESS_ = DUPLICATE_SAME_ACCESS; const HANDLE_ INVALID_HANDLE_VALUE_ = INVALID_HANDLE_VALUE; #else BOOST_CONSTEXPR_OR_CONST DWORD_ DUPLICATE_CLOSE_SOURCE_ = 1; BOOST_CONSTEXPR_OR_CONST DWORD_ DUPLICATE_SAME_ACCESS_ = 2; const HANDLE_ INVALID_HANDLE_VALUE_ = (HANDLE_)(-1); #endif BOOST_CONSTEXPR_OR_CONST DWORD_ duplicate_close_source = DUPLICATE_CLOSE_SOURCE_; BOOST_CONSTEXPR_OR_CONST DWORD_ duplicate_same_access = DUPLICATE_SAME_ACCESS_; // Note: The "unused" attribute here should not be necessary because the variable is a constant. // However, MinGW gcc 5.3 spams warnings about this particular constant. const HANDLE_ invalid_handle_value BOOST_ATTRIBUTE_UNUSED = INVALID_HANDLE_VALUE_; } } #include #endif // BOOST_WINAPI_HANDLES_HPP_INCLUDED_