|
Last change
on this file since 46 was
29,
checked in by landauf, 17 years ago
|
|
updated boost from 1_33_1 to 1_34_1
|
|
File size:
702 bytes
|
| Line | |
|---|
| 1 | // Boost Filesystem cerrno.hpp header --------------------------------------// |
|---|
| 2 | |
|---|
| 3 | // Copyright Beman Dawes 2005. |
|---|
| 4 | // Use, modification, and distribution is subject to the Boost Software |
|---|
| 5 | // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at |
|---|
| 6 | // http://www.boost.org/LICENSE_1_0.txt) |
|---|
| 7 | |
|---|
| 8 | // See library home page at http://www.boost.org/libs/filesystem |
|---|
| 9 | |
|---|
| 10 | #ifndef BOOST_FILESYSTEM_CERRNO_HPP |
|---|
| 11 | #define BOOST_FILESYSTEM_CERRNO_HPP |
|---|
| 12 | |
|---|
| 13 | #include <cerrno> |
|---|
| 14 | |
|---|
| 15 | #if defined __BORLANDC__ |
|---|
| 16 | #define ENOSYS 9997 |
|---|
| 17 | #endif |
|---|
| 18 | |
|---|
| 19 | #define EBADHANDLE 9998 // bad handle |
|---|
| 20 | #define EOTHER 9999 // Other error not translatable |
|---|
| 21 | // to a POSIX errno value |
|---|
| 22 | |
|---|
| 23 | #endif // include guard |
|---|
Note: See
TracBrowser
for help on using the repository browser.