]>
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(__CYGWIN32__) && !defined(__WXMOTIF__) && !defined(__WXGTK__) \
22 && !defined(__WXX11__)
23 /* for Cygwin, default to wxMSW unless otherwise specified */
37 #if defined(_WIN32) || defined(WIN32) || defined(__NT__) || defined(__WXWINCE__)
46 /* Win95 means Win95-style UI, i.e. Win9x/NT 4+ */
47 #if !defined(__WIN95__) && defined(WINVER) && (WINVER >= 0x0400)
52 #if defined(__WXMSW__) || defined(__WIN32__)
53 #if !defined(__WINDOWS__)
64 #if defined(TWIN32) && !defined(__TWIN32__)
69 Include wx/setup.h for the Unix platform defines generated by configure and
70 the library compilation options
74 /* check the consistency of the settings in setup.h */
75 #include "wx/chkconf.h"
78 old C++ headers (like <iostream.h>) declare classes in the global namespace
79 while the new, standard ones (like <iostream>) do it in std:: namespace
81 using this macro allows constuctions like "wxSTD iostream" to work in
91 OS: first of all, test for MS-DOS platform. We must do this before testing
92 for Unix, because DJGPP compiler defines __unix__ under MS-DOS
94 #if defined(__GO32__) || defined(__DJGPP__) || defined(__DOS__)
98 /* size_t is the same as unsigned int for Watcom 11 compiler, */
99 /* so define it if it hadn't been done by configure yet */
100 #if !defined(wxSIZE_T_IS_UINT) && !defined(wxSIZE_T_IS_ULONG)
102 #define wxSIZE_T_IS_UINT
105 #define wxSIZE_T_IS_ULONG
110 OS: then test for generic Unix defines, then for particular flavours and
111 finally for Unix-like systems
113 #elif defined(__UNIX__) || defined(__unix) || defined(__unix__) || \
114 defined(____SVR4____) || defined(__LINUX__) || defined(__sgi) || \
115 defined(__hpux) || defined(sun) || defined(__SUN__) || defined(_AIX) || \
116 defined(__EMX__) || defined(__VMS) || defined(__BEOS__)
118 #define __UNIX_LIKE__
120 /* Helps SGI compilation, apparently */
123 #define __need_wchar_t
126 Note I use the term __SGI_CC__ for both cc and CC, its not a good
127 idea to mix gcc and cc/CC, the name mangling is different
130 #endif /* gcc/!gcc */
133 #if defined(sun) || defined(__SUN__)
142 #define OS2EMX_PLAIN_CHAR
145 /* define __HPUX__ for HP-UX where standard macro is __hpux */
146 #if defined(__hpux) && !defined(__HPUX__)
150 #if defined(__CYGWIN__) || defined(__WINE__)
151 #if !defined(wxSIZE_T_IS_UINT)
152 #define wxSIZE_T_IS_UINT
155 #elif defined(applec) || \
156 defined(THINK_C) || \
157 (defined(__MWERKS__) && !defined(__INTEL__))
159 #if !defined(wxSIZE_T_IS_UINT) && !defined(wxSIZE_T_IS_ULONG)
160 #define wxSIZE_T_IS_ULONG
162 #elif defined(__WXMAC__) && defined(__APPLE__)
164 #define __UNIX_LIKE__
167 These defines are needed when compiling using Project Builder
168 with a non generated setup0.h
180 #define __POWERPC__ 1
183 #if !defined(wxSIZE_T_IS_UINT) && !defined(wxSIZE_T_IS_ULONG)
184 #define wxSIZE_T_IS_ULONG
187 Some code has been added to workaround defects(?) in the
188 bundled gcc compiler. These corrections are identified by
189 __DARWIN__ for Darwin related corrections (wxMac, wxMotif)
191 #elif defined(__OS2__)
192 #if defined(__IBMCPP__)
193 #define __VISAGEAVER__ __IBMCPP__
202 /* Place other OS/2 compiler environment defines here */
203 #if defined(__VISAGECPP__)
204 /* VisualAge is the only thing that understands _Optlink */
205 #define LINKAGEMODE _Optlink
207 #define wxSIZE_T_IS_UINT
214 /* to be changed for Win64! */
220 define another standard symbol for Microsoft Visual C++: the standard
221 one (_MSC_VER) is also defined by Metrowerks compiler
223 #if defined(_MSC_VER) && !defined(__MWERKS__)
224 #define __VISUALC__ _MSC_VER
225 #elif defined(__BCPLUSPLUS__) && !defined(__BORLANDC__)
227 #elif defined(__WATCOMC__)
228 #elif defined(__SC__)
229 #define __SYMANTECC__
230 #endif /* compiler */
232 /* size_t is the same as unsigned int for all Windows compilers we know, */
233 /* so define it if it hadn't been done by configure yet */
234 #if !defined(wxSIZE_T_IS_UINT) && !defined(wxSIZE_T_IS_ULONG)
235 #define wxSIZE_T_IS_UINT
240 if we're on a Unix system but didn't use configure (so that setup.h didn't
241 define __UNIX__), do define __UNIX__ now
243 #if !defined(__UNIX__) && defined(__UNIX_LIKE__)
247 #if defined(__HPUX__) && !defined(__WXGTK__)
250 #endif /* __WXMOTIF__ */
253 #if defined(__WXMOTIF__) || defined(__WXX11__)
258 This macro can be used to test the gcc version and can be used like this:
260 #if wxCHECK_GCC_VERSION(3, 1)
261 ... we have gcc 3.1 or later ...
263 ... no gcc at all or gcc < 3.1 ...
266 #define wxCHECK_GCC_VERSION( major, minor ) \
267 ( defined(__GNUC__) && defined(__GNUC_MINOR__) \
268 && ( ( __GNUC__ > (major) ) \
269 || ( __GNUC__ == (major) && __GNUC_MINOR__ >= (minor) ) ) )
272 This macro can be used to check that the version of mingw32 compiler is
275 #if defined( __GNUWIN32__ ) || defined( __MINGW32__ ) || defined( __CYGWIN__ )
276 #include "wx/msw/gccpriv.h"
278 #undef wxCHECK_W32API_VERSION
279 #define wxCHECK_W32API_VERSION(maj, min) (0)
282 #endif /* _WX_PLATFORM_H_ */