X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8af7f7c125b3e23d11520acf8e59864303c5047a..3201a1046ba71ba8e5ef2ed694fde34d12f743f3:/interface/version.h diff --git a/interface/version.h b/interface/version.h index 2fedd80c3c..d3a15946d3 100644 --- a/interface/version.h +++ b/interface/version.h @@ -12,10 +12,10 @@ /** 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) @@ -27,12 +27,16 @@ ... } @endcode + + @header{wx/version.h} */ #define wxCHECK_VERSION( major, minor, release ) /** Same as wxCHECK_VERSION() but also checks that wxSUBRELEASE_NUMBER is at least subrel. + + @header{wx/version.h} */ #define wxCHECK_VERSION_FULL( major, minor, release, subrel )