initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
45
libs/wxWidgets-3.3.1/interface/wx/platform.h
Normal file
45
libs/wxWidgets-3.3.1/interface/wx/platform.h
Normal file
@@ -0,0 +1,45 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: platform.h
|
||||
// Purpose: interface of global functions
|
||||
// Author: wxWidgets team
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
/** @addtogroup group_funcmacro_version */
|
||||
///@{
|
||||
|
||||
/**
|
||||
Returns @true if the compiler being used is GNU C++ and its version is
|
||||
at least major.minor or greater. Returns @false otherwise.
|
||||
|
||||
@header{wx/platform.h}
|
||||
*/
|
||||
#define wxCHECK_GCC_VERSION( major, minor )
|
||||
|
||||
/**
|
||||
Returns @true if the compiler being used is Sun CC Pro and its version is
|
||||
at least major.minor or greater. Returns @false otherwise.
|
||||
|
||||
@header{wx/platform.h}
|
||||
*/
|
||||
#define wxCHECK_SUNCC_VERSION( major, minor )
|
||||
|
||||
/**
|
||||
Returns @true if the compiler being used is Visual C++ and its version is
|
||||
at least major or greater. Returns @false otherwise.
|
||||
|
||||
@header{wx/platform.h}
|
||||
*/
|
||||
#define wxCHECK_VISUALC_VERSION( major )
|
||||
|
||||
/**
|
||||
Returns @true if the version of w32api headers used is major.minor or
|
||||
greater. Otherwise, and also if we are not compiling with MinGW32/Cygwin
|
||||
under Win32 at all, returns @false.
|
||||
|
||||
@header{wx/platform.h}
|
||||
*/
|
||||
#define wxCHECK_W32API_VERSION( major, minor )
|
||||
|
||||
///@}
|
||||
|
||||
Reference in New Issue
Block a user