]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/platform.h
3 * Purpose: define the OS and compiler identification macros
4 * Author: Vadim Zeitlin
6 * Created: 29.10.01 (extracted from wx/defs.h)
8 * Copyright: (c) 1997-2001 wxWindows team
9 * Licence: wxWindows license
12 /* THIS IS A C FILE, DON'T USE C++ FEATURES (IN PARTICULAR COMMENTS) IN IT */
14 #ifndef _WX_PLATFORM_H_
15 #define _WX_PLATFORM_H_
18 first define Windows symbols if they're not defined on the command line: we
19 can autodetect everything we need if _WIN32 is defined
21 #if defined(_WIN32) || defined(WIN32) || defined(__NT__)
30 /* Win95 means Win95-style UI, i.e. Win9x/NT 4+ */
31 #if !defined(__WIN95__) && defined(WINVER) && (WINVER >= 0x0400)
36 #if defined(__WXMSW__) || defined(__WIN32__)
37 #if !defined(__WINDOWS__)
54 #if defined(TWIN32) && !defined(__TWIN32__)
59 Include wx/setup.h for the Unix platform defines generated by configure and
60 the library compilation options
64 /* check the consistency of the settings in setup.h */
65 #include "wx/chkconf.h"
68 old C++ headers (like <iostream.h>) declare classes in the global namespace
69 while the new, standard ones (like <iostream>) do it in std:: namespace
71 using this macro allows constuctions like "wxSTD iostream" to work in
81 OS: first of all, test for MS-DOS platform. We must do this before testing
82 for Unix, because DJGPP compiler defines __unix__ under MS-DOS
84 #if defined(__GO32__) || defined(__DJGPP__) || defined(__DOS__)
88 /* size_t is the same as unsigned int for Watcom 11 compiler, */
89 /* so define it if it hadn't been done by configure yet */
90 #if !defined(wxSIZE_T_IS_UINT) && !defined(wxSIZE_T_IS_ULONG)
92 #define wxSIZE_T_IS_UINT
95 #define wxSIZE_T_IS_ULONG
100 OS: then test for generic Unix defines, then for particular flavours and
101 finally for Unix-like systems
103 #elif defined(__UNIX__) || defined(__unix) || defined(__unix__) || \
104 defined(____SVR4____) || defined(__LINUX__) || defined(__sgi) || \
105 defined(__hpux) || defined(sun) || defined(__SUN__) || defined(_AIX) || \
106 defined(__EMX__) || defined(__VMS) || defined(__BEOS__)
108 #define __UNIX_LIKE__
110 /* Helps SGI compilation, apparently */
113 #define __need_wchar_t
116 Note I use the term __SGI_CC__ for both cc and CC, its not a good
117 idea to mix gcc and cc/CC, the name mangling is different
120 #endif /* gcc/!gcc */
123 #if defined(sun) || defined(__SUN__)
132 #define OS2EMX_PLAIN_CHAR
135 /* define __HPUX__ for HP-UX where standard macro is __hpux */
136 #if defined(__hpux) && !defined(__HPUX__)
140 #if defined(__CYGWIN__)
141 #if !defined(wxSIZE_T_IS_UINT)
142 #define wxSIZE_T_IS_UINT
145 #elif defined(applec) || \
146 defined(THINK_C) || \
147 (defined(__MWERKS__) && !defined(__INTEL__))
149 #elif defined(__WXMAC__) && defined(__APPLE__)
151 #define __UNIX_LIKE__
154 These defines are needed when compiling using Project Builder
155 with a non generated setup0.h
167 #define __POWERPC__ 1
171 Some code has been added to workaround defects(?) in the
172 bundled gcc compiler. These corrections are identified by
173 __DARWIN__ for Darwin related corrections (wxMac, wxMotif)
175 #elif defined(__OS2__)
176 #if defined(__IBMCPP__)
177 #define __VISAGEAVER__ __IBMCPP__
186 /* Place other OS/2 compiler environment defines here */
187 #if defined(__VISAGECPP__)
188 /* VisualAge is the only thing that understands _Optlink */
189 #define LINKAGEMODE _Optlink
191 #define wxSIZE_T_IS_UINT
198 /* to be changed for Win64! */
204 define another standard symbol for Microsoft Visual C++: the standard
205 one (_MSC_VER) is also defined by Metrowerks compiler
207 #if defined(_MSC_VER) && !defined(__MWERKS__)
208 #define __VISUALC__ _MSC_VER
209 #elif defined(__BCPLUSPLUS__) && !defined(__BORLANDC__)
211 #elif defined(__WATCOMC__)
212 #elif defined(__SC__)
213 #define __SYMANTECC__
214 #endif /* compiler */
216 /* size_t is the same as unsigned int for all Windows compilers we know, */
217 /* so define it if it hadn't been done by configure yet */
218 #if !defined(wxSIZE_T_IS_UINT) && !defined(wxSIZE_T_IS_ULONG)
219 #define wxSIZE_T_IS_UINT
224 if we're on a Unix system but didn't use configure (so that setup.h didn't
225 define __UNIX__), do define __UNIX__ now
227 #if !defined(__UNIX__) && defined(__UNIX_LIKE__)
231 #if defined(__HPUX__) && !defined(__WXGTK__)
234 #endif /* __WXMOTIF__ */
237 #if defined(__WXMOTIF__) || defined(__WXX11__)
242 This macro can be used to check that the version of mingw32 compiler is
245 #if defined( __GNUWIN32__ ) || defined( __MINGW32__ ) || defined( __CYGWIN__ )
246 #include "wx/msw/gccpriv.h"
248 #undef wxCHECK_W32API_VERSION
249 #define wxCHECK_W32API_VERSION(maj, min) (0)
252 #endif /* _WX_PLATFORM_H_ */