]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/platform.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of global functions
4 // Author: wxWidgets team
5 // Licence: wxWindows licence
6 /////////////////////////////////////////////////////////////////////////////
8 /** @addtogroup group_funcmacro_version */
12 Returns @true if the compiler being used is GNU C++ and its version is
13 at least major.minor or greater. Returns @false otherwise.
15 @header{wx/platform.h}
17 #define wxCHECK_GCC_VERSION( major, minor )
20 Returns @true if the compiler being used is Sun CC Pro and its version is
21 at least major.minor or greater. Returns @false otherwise.
23 @header{wx/platform.h}
25 #define wxCHECK_SUNCC_VERSION( major, minor )
28 Returns @true if the compiler being used is Visual C++ and its version is
29 at least major or greater. Returns @false otherwise.
31 @header{wx/platform.h}
33 #define wxCHECK_VISUALC_VERSION( major )
36 Returns @true if the version of w32api headers used is major.minor or
37 greater. Otherwise, and also if we are not compiling with MinGW32/Cygwin
38 under Win32 at all, returns @false.
40 @header{wx/platform.h}
42 #define wxCHECK_W32API_VERSION( major, minor )