/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/security.hpp (2574B)
/* * 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_SECURITY_HPP_INCLUDED_ #define BOOST_WINAPI_SECURITY_HPP_INCLUDED_ #include #ifdef BOOST_HAS_PRAGMA_ONCE #pragma once #endif #if BOOST_WINAPI_PARTITION_APP_SYSTEM #include #if !defined( BOOST_USE_WINDOWS_H ) extern "C" { struct _ACL; struct _SECURITY_DESCRIPTOR; #if defined( BOOST_WINAPI_IS_MINGW ) typedef _SECURITY_DESCRIPTOR *PSECURITY_DESCRIPTOR; #else typedef boost::winapi::PVOID_ PSECURITY_DESCRIPTOR; #endif BOOST_WINAPI_IMPORT boost::winapi::BOOL_ BOOST_WINAPI_WINAPI_CC InitializeSecurityDescriptor( PSECURITY_DESCRIPTOR pSecurityDescriptor, boost::winapi::DWORD_ dwRevision); BOOST_WINAPI_IMPORT boost::winapi::BOOL_ BOOST_WINAPI_WINAPI_CC SetSecurityDescriptorDacl( PSECURITY_DESCRIPTOR pSecurityDescriptor, boost::winapi::BOOL_ bDaclPresent, ::_ACL* pDacl, boost::winapi::BOOL_ bDaclDefaulted); } #endif namespace boost { namespace winapi { typedef PVOID_ PSID_; typedef WORD_ SECURITY_DESCRIPTOR_CONTROL_, *PSECURITY_DESCRIPTOR_CONTROL_; typedef struct BOOST_MAY_ALIAS _ACL { BYTE_ AclRevision; BYTE_ Sbz1; WORD_ AclSize; WORD_ AceCount; WORD_ Sbz2; } ACL_, *PACL_; typedef struct BOOST_MAY_ALIAS _SECURITY_DESCRIPTOR { BYTE_ Revision; BYTE_ Sbz1; SECURITY_DESCRIPTOR_CONTROL_ Control; PSID_ Owner; PSID_ Group; PACL_ Sacl; PACL_ Dacl; } SECURITY_DESCRIPTOR_, *PISECURITY_DESCRIPTOR_; // To abstract away the different ::PSECURITY_DESCRIPTOR on MinGW, we use PVOID_ universally here // and cast the pointers to ::PSECURITY_DESCRIPTOR in wrapper functions. typedef PVOID_ PSECURITY_DESCRIPTOR_; BOOST_FORCEINLINE BOOL_ InitializeSecurityDescriptor(PSECURITY_DESCRIPTOR_ pSecurityDescriptor, DWORD_ dwRevision) { return ::InitializeSecurityDescriptor(reinterpret_cast< ::PSECURITY_DESCRIPTOR >(pSecurityDescriptor), dwRevision); } BOOST_FORCEINLINE BOOL_ SetSecurityDescriptorDacl(PSECURITY_DESCRIPTOR_ pSecurityDescriptor, BOOL_ bDaclPresent, PACL_ pDacl, BOOL_ bDaclDefaulted) { return ::SetSecurityDescriptorDacl(reinterpret_cast< ::PSECURITY_DESCRIPTOR >(pSecurityDescriptor), bDaclPresent, reinterpret_cast< ::_ACL* >(pDacl), bDaclDefaulted); } } } #include #endif // BOOST_WINAPI_PARTITION_APP_SYSTEM #endif // BOOST_WINAPI_SECURITY_HPP_INCLUDED_