initial commit

Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
2025-10-31 23:37:30 +01:00
commit bf6b52fd94
9654 changed files with 4035664 additions and 0 deletions

View 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 )
///@}