sl@0
|
1 |
// Boost Filesystem cerrno.hpp header --------------------------------------//
|
sl@0
|
2 |
|
sl@0
|
3 |
// Copyright Beman Dawes 2005.
|
sl@0
|
4 |
// Use, modification, and distribution is subject to the Boost Software
|
sl@0
|
5 |
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
sl@0
|
6 |
// http://www.boost.org/LICENSE_1_0.txt)
|
sl@0
|
7 |
|
sl@0
|
8 |
// See library home page at http://www.boost.org/libs/filesystem
|
sl@0
|
9 |
|
sl@0
|
10 |
#ifndef BOOST_FILESYSTEM_CERRNO_HPP
|
sl@0
|
11 |
#define BOOST_FILESYSTEM_CERRNO_HPP
|
sl@0
|
12 |
|
sl@0
|
13 |
#include <cerrno>
|
sl@0
|
14 |
|
sl@0
|
15 |
#if defined __BORLANDC__
|
sl@0
|
16 |
#define ENOSYS 9997
|
sl@0
|
17 |
#endif
|
sl@0
|
18 |
|
sl@0
|
19 |
#define EBADHANDLE 9998 // bad handle
|
sl@0
|
20 |
#define EOTHER 9999 // Other error not translatable
|
sl@0
|
21 |
// to a POSIX errno value
|
sl@0
|
22 |
|
sl@0
|
23 |
#endif // include guard
|