]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/platform.h
   1 ///////////////////////////////////////////////////////////////////////////// 
   3 // Purpose:     interface of global functions 
   4 // Author:      wxWidgets team 
   6 // Licence:     wxWindows license 
   7 ///////////////////////////////////////////////////////////////////////////// 
   9 /** @ingroup group_funcmacro_version */ 
  13     Returns @true if the compiler being used is GNU C++ and its version is 
  14     at least major.minor or greater. Returns @false otherwise. 
  16     @header{wx/platform.h} 
  18 #define wxCHECK_GCC_VERSION( major, minor ) 
  21     Returns @true if the compiler being used is Sun CC Pro and its version is 
  22     at least major.minor or greater. Returns @false otherwise. 
  24     @header{wx/platform.h} 
  26 #define wxCHECK_SUNCC_VERSION( major, minor ) 
  29     Returns @true if the compiler being used is Visual C++ and its version is 
  30     at least major or greater. Returns @false otherwise. 
  32     @header{wx/platform.h} 
  34 #define wxCHECK_VISUALC_VERSION( major ) 
  37     Returns @true if the version of w32api headers used is major.minor or 
  38     greater. Otherwise, and also if we are not compiling with MinGW32/Cygwin 
  39     under Win32 at all, returns @false. 
  41     @header{wx/platform.h} 
  43 #define wxCHECK_W32API_VERSION( major, minor )