]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: platform.h | |
3 | // Purpose: interface of global functions | |
4 | // Author: wxWidgets team | |
5 | // Licence: wxWindows licence | |
6 | ///////////////////////////////////////////////////////////////////////////// | |
7 | ||
8 | /** @addtogroup group_funcmacro_version */ | |
9 | //@{ | |
10 | ||
11 | /** | |
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. | |
14 | ||
15 | @header{wx/platform.h} | |
16 | */ | |
17 | #define wxCHECK_GCC_VERSION( major, minor ) | |
18 | ||
19 | /** | |
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. | |
22 | ||
23 | @header{wx/platform.h} | |
24 | */ | |
25 | #define wxCHECK_SUNCC_VERSION( major, minor ) | |
26 | ||
27 | /** | |
28 | Returns @true if the compiler being used is Visual C++ and its version is | |
29 | at least major or greater. Returns @false otherwise. | |
30 | ||
31 | @header{wx/platform.h} | |
32 | */ | |
33 | #define wxCHECK_VISUALC_VERSION( major ) | |
34 | ||
35 | /** | |
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. | |
39 | ||
40 | @header{wx/platform.h} | |
41 | */ | |
42 | #define wxCHECK_W32API_VERSION( major, minor ) | |
43 | ||
44 | //@} | |
45 |