reactos/include/c++/stlport/stl/_cprolog.h
Jérôme Gardou 6b0b6cb78f [HEADERS]
- move stlport headers to the c++ directory
 - add a specific _reactos.h configuration file for stlport
 - add cerrno to c++ headers
 - __declspec(nothrow) must be placed before calling convention with msvc. GCC doesn't care.
We now use our headers with both msvc and gcc.

svn path=/branches/cmake-bringup/; revision=49565
2010-11-11 15:58:18 +00:00

26 lines
804 B
C

/* NOTE : this header has no guards and is MEANT for multiple inclusion!
* If you are using "header protection" option with your compiler,
* please also find #pragma which disables it and put it here, to
* allow reentrancy of this header.
*/
#ifdef std
# undef std /* We undef "std" on entry , as STLport headers may include native ones. */
#endif
#ifdef _STLP_PROLOG_HEADER_INCLUDED
# error STlport prolog header can not be reincluded as long as epilog has not be included.
#endif
#define _STLP_PROLOG_HEADER_INCLUDED
#ifndef _STLP_FEATURES_H
# include <stl/config/features.h>
#endif
/* If the platform provides any specific prolog actions,
* like #pragmas, do include platform-specific prolog file */
#if defined (_STLP_HAS_SPECIFIC_PROLOG_EPILOG)
# include <stl/config/_prolog.h>
#endif