Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/iostreams/detail/file_handle.hpp @ 133:4acb5d8d80b6 tip
Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author | Chris Cannam |
---|---|
date | Tue, 30 Jul 2019 12:25:44 +0100 |
parents | 2665513ce2d3 |
children |
rev | line source |
---|---|
Chris@16 | 1 /* |
Chris@16 | 2 * Distributed under the Boost Software License, Version 1.0.(See accompanying |
Chris@16 | 3 * file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.) |
Chris@16 | 4 * |
Chris@16 | 5 * See http://www.boost.org/libs/iostreams for documentation. |
Chris@16 | 6 * |
Chris@16 | 7 * File: boost/iostreams/detail/file_handle.hpp |
Chris@16 | 8 * Date: Sun Jun 22 14:23:12 MDT 2008 |
Chris@16 | 9 * Copyright: 2008 CodeRage, LLC |
Chris@16 | 10 * Author: Jonathan Turkanis |
Chris@16 | 11 * Contact: turkanis at coderage dot com |
Chris@16 | 12 * |
Chris@16 | 13 * Defines the type boost::iostreams::detail::file_handle, representing an |
Chris@16 | 14 * operating system file handle. |
Chris@16 | 15 */ |
Chris@16 | 16 |
Chris@16 | 17 #ifndef BOOST_IOSTREAMS_DETAIL_FILE_HANDLE_HPP_INCLUDED |
Chris@16 | 18 #define BOOST_IOSTREAMS_DETAIL_FILE_HANDLE_HPP_INCLUDED |
Chris@16 | 19 |
Chris@16 | 20 #include <boost/iostreams/detail/config/windows_posix.hpp> |
Chris@16 | 21 |
Chris@16 | 22 namespace boost { namespace iostreams { namespace detail { |
Chris@16 | 23 |
Chris@16 | 24 #ifdef BOOST_IOSTREAMS_WINDOWS |
Chris@16 | 25 typedef void* file_handle; // A.k.a. HANDLE |
Chris@16 | 26 #else |
Chris@16 | 27 typedef int file_handle; |
Chris@16 | 28 #endif |
Chris@16 | 29 |
Chris@16 | 30 } } } // End namespaces detail, iostreams, boost. |
Chris@16 | 31 |
Chris@16 | 32 #endif // #ifndef BOOST_IOSTREAMS_DETAIL_FILE_HANDLE_HPP_INCLUDED |