|
||||
File indexing completed on 2025-01-18 09:29:03
0001 // 0002 // windows/object_handle.hpp 0003 // ~~~~~~~~~~~~~~~~~~~~~~~~~ 0004 // 0005 // Copyright (c) 2003-2023 Christopher M. Kohlhoff (chris at kohlhoff dot com) 0006 // Copyright (c) 2011 Boris Schaeling (boris@highscore.de) 0007 // 0008 // Distributed under the Boost Software License, Version 1.0. (See accompanying 0009 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 0010 // 0011 0012 #ifndef BOOST_ASIO_WINDOWS_OBJECT_HANDLE_HPP 0013 #define BOOST_ASIO_WINDOWS_OBJECT_HANDLE_HPP 0014 0015 #if defined(_MSC_VER) && (_MSC_VER >= 1200) 0016 # pragma once 0017 #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) 0018 0019 #include <boost/asio/detail/config.hpp> 0020 0021 #if defined(BOOST_ASIO_HAS_WINDOWS_OBJECT_HANDLE) \ 0022 || defined(GENERATING_DOCUMENTATION) 0023 0024 #include <boost/asio/windows/basic_object_handle.hpp> 0025 0026 namespace boost { 0027 namespace asio { 0028 namespace windows { 0029 0030 /// Typedef for the typical usage of an object handle. 0031 typedef basic_object_handle<> object_handle; 0032 0033 } // namespace windows 0034 } // namespace asio 0035 } // namespace boost 0036 0037 #endif // defined(BOOST_ASIO_HAS_WINDOWS_OBJECT_HANDLE) 0038 // || defined(GENERATING_DOCUMENTATION) 0039 0040 #endif // BOOST_ASIO_WINDOWS_OBJECT_HANDLE_HPP
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |