ReactOS 0.4.15-dev-7958-gcd0bb1a
_cprolog.h
Go to the documentation of this file.
1/* NOTE : this header has no guards and is MEANT for multiple inclusion!
2 * If you are using "header protection" option with your compiler,
3 * please also find #pragma which disables it and put it here, to
4 * allow reentrancy of this header.
5 */
6
7#ifndef RC_INVOKED
8
9#ifdef std
10# undef std /* We undef "std" on entry , as STLport headers may include native ones. */
11#endif
12
13#ifdef _STLP_PROLOG_HEADER_INCLUDED
14# error STlport prolog header can not be reincluded as long as epilog has not be included.
15#endif
16
17#define _STLP_PROLOG_HEADER_INCLUDED
18
19#ifndef _STLP_FEATURES_H
20# include <stl/config/features.h>
21#endif
22
23/* If the platform provides any specific prolog actions,
24 * like #pragmas, do include platform-specific prolog file */
25#if defined (_STLP_HAS_SPECIFIC_PROLOG_EPILOG)
26# include <stl/config/_prolog.h>
27#endif
28
29#endif