]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/version.h
3 * Purpose: wxWidgets version numbers
5 * Modified by: Ryan Norton (Converted to C)
8 * Copyright: (c) 1998 Julian Smart
9 * Licence: wxWindows licence
12 /* THIS IS A C FILE, DON'T USE C++ FEATURES (IN PARTICULAR COMMENTS) IN IT */
14 #ifndef _WX_VERSION_H_
15 #define _WX_VERSION_H_
17 /* the constants below must be changed with each new version */
18 /* ---------------------------------------------------------------------------- */
20 /* NB: this file is parsed by Perl code in tmake templates in distrib/msw/tmake */
21 /* so don't change its format too much or they could break */
22 #define wxMAJOR_VERSION 2
23 #define wxMINOR_VERSION 6
24 #define wxRELEASE_NUMBER 1
25 #define wxSUBRELEASE_NUMBER 1
26 #define wxVERSION_STRING _T("wxWidgets 2.6.1")
28 /* nothing to update below this line when updating the version */
29 /* ---------------------------------------------------------------------------- */
31 /* Users can pre-define wxABI_VERSION to a lower value in their
32 * makefile/project settings to compile code that will be binary compatible
33 * with earlier versions of the ABI within the same minor version (between
34 * minor versions binary compatibility breaks anyway). The default is the
35 * version of wxWidgets being used. A single number with two decimal digits
36 * for each component, e.g. 20601 for 2.6.1 */
38 #define wxABI_VERSION ( \
39 wxMAJOR_VERSION * 10000 + \
40 wxMINOR_VERSION * 100 + \
44 /* helpers for wxVERSION_NUM_XXX */
45 #define wxSTRINGIZE(x) #x
46 #define wxMAKE_VERSION_STRING(x, y, z) \
47 wxSTRINGIZE(x) wxSTRINGIZE(y) wxSTRINGIZE(z)
48 #define wxMAKE_VERSION_DOT_STRING(x, y, z) \
49 wxSTRINGIZE(x) "." wxSTRINGIZE(y) "." wxSTRINGIZE(z)
51 /* these are used by src/msw/version.rc and should always be ASCII, not Unicode */
52 #define wxVERSION_NUM_STRING \
53 wxMAKE_VERSION_STRING(wxMAJOR_VERSION, wxMINOR_VERSION, wxRELEASE_NUMBER)
54 #define wxVERSION_NUM_DOT_STRING \
55 wxMAKE_VERSION_DOT_STRING(wxMAJOR_VERSION, wxMINOR_VERSION, wxRELEASE_NUMBER)
57 /* some more defines, not really sure if they're [still] useful */
58 #define wxVERSION_NUMBER ( (wxMAJOR_VERSION * 1000) + (wxMINOR_VERSION * 100) + wxRELEASE_NUMBER )
59 #define wxBETA_NUMBER 0
60 #define wxVERSION_FLOAT ( wxMAJOR_VERSION + (wxMINOR_VERSION/10.0) + (wxRELEASE_NUMBER/100.0) + (wxBETA_NUMBER/10000.0) )
62 /* check if the current version is at least major.minor.release */
63 #define wxCHECK_VERSION(major,minor,release) \
64 (wxMAJOR_VERSION > (major) || \
65 (wxMAJOR_VERSION == (major) && wxMINOR_VERSION > (minor)) || \
66 (wxMAJOR_VERSION == (major) && wxMINOR_VERSION == (minor) && wxRELEASE_NUMBER >= (release)))
68 /* the same but check the subrelease also */
69 #define wxCHECK_VERSION_FULL(major,minor,release,subrel) \
70 (wxCHECK_VERSION(major, minor, release) && \
71 ((major) != wxMAJOR_VERSION || \
72 (minor) != wxMINOR_VERSION || \
73 (release) != wxRELEASE_NUMBER || \
74 (subrel) <= wxSUBRELEASE_NUMBER))
76 #endif /* _WX_VERSION_H_ */