• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2010 Vicente J. Botet Escriba
3  * Copyright 2015 Andrey Semashev
4  *
5  * Distributed under the Boost Software License, Version 1.0.
6  * See http://www.boost.org/LICENSE_1_0.txt
7  */
8 
9 #ifndef BOOST_WINAPI_SYNCHRONIZATION_HPP_INCLUDED_
10 #define BOOST_WINAPI_SYNCHRONIZATION_HPP_INCLUDED_
11 
12 #include <boost/winapi/basic_types.hpp>
13 #include <boost/winapi/critical_section.hpp>
14 #include <boost/winapi/wait.hpp>
15 #include <boost/winapi/event.hpp>
16 #include <boost/winapi/mutex.hpp>
17 #include <boost/winapi/semaphore.hpp>
18 #include <boost/winapi/init_once.hpp>
19 #include <boost/winapi/srw_lock.hpp>
20 #include <boost/winapi/condition_variable.hpp>
21 #include <boost/winapi/wait_on_address.hpp>
22 #include <boost/winapi/apc.hpp>
23 
24 #ifdef BOOST_HAS_PRAGMA_ONCE
25 #pragma once
26 #endif
27 
28 #endif // BOOST_WINAPI_SYNCHRONIZATION_HPP_INCLUDED_
29