epoc32/include/stdapis/stlport/config/_prolog.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 0 061f57f2323e
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
     1 
     2 #if defined (_STLP_MSVC) || defined (__ICL) || defined (__BORLANDC__)
     3 
     4 # if defined (__BORLANDC__)
     5 #  if (__BORLANDC__ >= 0x510)
     6 #  pragma option push -Vx- -Ve- -a8 -b -pc -w-inl -w-aus -w-sig -w-8062 -w-8041 -w-8008 -w-8012 -w-8027 -w-8057 -w-8091 -w-8092 -w-8066  /* P_O_1 */
     7 #  endif
     8 # else
     9 # if !(defined (_STLP_MSVC) && (_STLP_MSVC < 1200))
    10 // #  pragma warning(push)
    11 # endif
    12 # include <config/_msvc_warnings_off.h>
    13 # pragma pack(push,8)
    14 # endif
    15 
    16 
    17 #elif defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
    18 
    19 #pragma set woff 1209
    20 #pragma set woff 1174
    21 #pragma set woff 1375
    22 // from iterator_base.h
    23 #pragma set woff 1183
    24 
    25 #elif defined(__DECCXX)
    26 
    27 # ifdef __PRAGMA_ENVIRONMENT
    28 #  pragma __environment __save
    29 #  pragma __environment __header_defaults
    30 # endif
    31 
    32 #elif defined(__IBMCPP__)
    33 // supress EDC3130: A constant is being used as a conditional expression
    34 #pragma info(nocnd)
    35 
    36 #elif defined (__HP_aCC)
    37 /* _REENTRANT selects Posix 1c threads unless draft4 selected.
    38  *  * This usage is obsolescent, "-D_POSIX_C_SOURCE=199506" is preferred */
    39 # if 0 /* defined (_REENTRANT) && ! defined (_POSIX_C_SOURCE) */
    40 #  define _POSIX_C_SOURCE 199506
    41 # endif
    42 #elif defined (__WATCOMCPLUSPLUS__)
    43 # pragma warning 604 10 // must lookahead to determine...
    44 # pragma warning 594 10 // resolved as declaration/type
    45 # pragma warning 595 10 // resolved as an expression
    46 #endif