adjusted indentation with astyle; added Id keyword

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52383 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-03-08 14:43:31 +00:00
parent aa6ec1d787
commit 7c913512a4
269 changed files with 9052 additions and 9058 deletions

View File

@@ -1,35 +1,35 @@
/////////////////////////////////////////////////////////////////////////////
// Name: platform.h
// Purpose: documentation for global functions
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
/**
Same as wxCHECK_VERSION but also checks that
@c wxSUBRELEASE_NUMBER is at least @e subrel.
// Name: platform.h
// Purpose: documentation for global functions
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
/**
Same as wxCHECK_VERSION but also checks that
@c wxSUBRELEASE_NUMBER is at least @e subrel.
*/
#define bool wxCHECK_VERSION_FULL(major, minor, release, subrel) /* implementation is private */
/**
This is a macro which evaluates to @true if the current wxWidgets version is at
least major.minor.release.
For example, to test if the program is compiled with wxWidgets 2.2 or higher,
the following can be done:
@code
wxString s;
#if wxCHECK_VERSION(2, 2, 0)
if ( s.StartsWith("foo") )
#else // replacement code for old version
if ( strncmp(s, "foo", 3) == 0 )
#endif
{
...
}
@endcode
/**
This is a macro which evaluates to @true if the current wxWidgets version is at
least major.minor.release.
For example, to test if the program is compiled with wxWidgets 2.2 or higher,
the following can be done:
@code
wxString s;
#if wxCHECK_VERSION(2, 2, 0)
if ( s.StartsWith("foo") )
#else // replacement code for old version
if ( strncmp(s, "foo", 3) == 0 )
#endif
{
...
}
@endcode
*/
#define bool wxCHECK_VERSION(major, minor, release) /* implementation is private */