1234567891011121314151617181920212223242526272829303132 |
- #ifndef BOOST_IOSTREAMS_DETAIL_FILE_HANDLE_HPP_INCLUDED
- #define BOOST_IOSTREAMS_DETAIL_FILE_HANDLE_HPP_INCLUDED
- #include <boost/iostreams/detail/config/windows_posix.hpp>
- namespace boost { namespace iostreams { namespace detail {
- #ifdef BOOST_IOSTREAMS_WINDOWS
- typedef void* file_handle;
- #else
- typedef int file_handle;
- #endif
- } } }
- #endif
|