OSDN Git Service

017fd8759bd33f607131bdc6291f3e678fde4d12
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / config / os / mingw32 / os_defines.h
1 // Specific definitions for generic platforms  -*- C++ -*-
2
3 // Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
4 // Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library.  This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 2, or (at your option)
10 // any later version.
11
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING.  If not, write to the Free
19 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
20 // USA.
21
22 // As a special exception, you may use this file as part of a free software
23 // library without restriction.  Specifically, if other files instantiate
24 // templates or use macros or inline functions from this file, or you compile
25 // this file and link it with other files to produce an executable, this
26 // file does not by itself cause the resulting executable to be covered by
27 // the GNU General Public License.  This exception does not however
28 // invalidate any other reasons why the executable file might be covered by
29 // the GNU General Public License.
30
31 /** @file os_defines.h
32  *  This is an internal header file, included by other library headers.
33  *  You should not attempt to use it directly.
34  */
35
36 #ifndef _GLIBCXX_OS_DEFINES
37 #  define _GLIBCXX_OS_DEFINES
38
39 // System-specific #define, typedefs, corrections, etc, go here.  This
40 // file will come before all others.
41
42 //  Define as 0, if you want, to enable inlining of gthread functions.
43 //  By default, don't pollute libstdc++ with win32api names.
44 #if !defined (__GTHREAD_HIDE_WIN32API)
45 # define __GTHREAD_HIDE_WIN32API 1
46 #endif
47
48 // Don't let win32api windef.h define min and max as macros
49 // if included after c++config.h.
50 #undef NOMINMAX
51 #define NOMINMAX 1
52
53 // See libstdc++/20806.
54 #define _GLIBCXX_HAVE_DOS_BASED_FILESYSTEM 1
55
56 // See  libstdc++/37522.
57 #define _GLIBCXX_HAVE_BROKEN_VSWPRINTF 1
58
59 #endif