]>
Commit | Line | Data |
---|---|---|
e0c749a7 | 1 | /** |
cab1a605 WS |
2 | * Name: wx/version.h |
3 | * Purpose: wxWidgets version numbers | |
77ffb593 | 4 | * Author: Julian Smart |
e0c749a7 | 5 | * Modified by: Ryan Norton (Converted to C) |
cab1a605 WS |
6 | * Created: 29/01/98 |
7 | * RCS-ID: $Id$ | |
8 | * Copyright: (c) 1998 Julian Smart | |
9 | * Licence: wxWindows licence | |
e0c749a7 | 10 | */ |
34cbe514 RN |
11 | |
12 | /* THIS IS A C FILE, DON'T USE C++ FEATURES (IN PARTICULAR COMMENTS) IN IT */ | |
c801d85f | 13 | |
1fd4a033 VZ |
14 | #ifndef _WX_VERSION_H_ |
15 | #define _WX_VERSION_H_ | |
c801d85f | 16 | |
34cbe514 RN |
17 | /* the constants below must be changed with each new version */ |
18 | /* ---------------------------------------------------------------------------- */ | |
c0589c62 | 19 | |
151815eb VZ |
20 | /* |
21 | Don't forget to update WX_CURRENT, WX_REVISION and WX_AGE in | |
22 | build/bakefiles/version.bkl and regenerate the makefiles when you change | |
23 | this! | |
24 | */ | |
25 | ||
26 | /* NB: this file is parsed by automatic tools so don't change its format! */ | |
eeade4cc | 27 | #define wxMAJOR_VERSION 2 |
84006e65 VZ |
28 | #define wxMINOR_VERSION 7 |
29 | #define wxRELEASE_NUMBER 0 | |
30 | #define wxSUBRELEASE_NUMBER 0 | |
31 | #define wxVERSION_STRING _T("wxWidgets 2.7.0") | |
1fd4a033 | 32 | |
34cbe514 RN |
33 | /* nothing to update below this line when updating the version */ |
34 | /* ---------------------------------------------------------------------------- */ | |
c0589c62 | 35 | |
67d124f6 MW |
36 | /* Users can pre-define wxABI_VERSION to a lower value in their |
37 | * makefile/project settings to compile code that will be binary compatible | |
38 | * with earlier versions of the ABI within the same minor version (between | |
39 | * minor versions binary compatibility breaks anyway). The default is the | |
40 | * version of wxWidgets being used. A single number with two decimal digits | |
41 | * for each component, e.g. 20601 for 2.6.1 */ | |
42 | #ifndef wxABI_VERSION | |
45a9a137 | 43 | #define wxABI_VERSION ( wxMAJOR_VERSION * 10000 + wxMINOR_VERSION * 100 + 99 ) |
67d124f6 MW |
44 | #endif |
45 | ||
34cbe514 | 46 | /* helpers for wxVERSION_NUM_XXX */ |
d70471fe VZ |
47 | #define wxSTRINGIZE(x) #x |
48 | #define wxMAKE_VERSION_STRING(x, y, z) \ | |
49 | wxSTRINGIZE(x) wxSTRINGIZE(y) wxSTRINGIZE(z) | |
50 | #define wxMAKE_VERSION_DOT_STRING(x, y, z) \ | |
51 | wxSTRINGIZE(x) "." wxSTRINGIZE(y) "." wxSTRINGIZE(z) | |
1fd4a033 | 52 | |
34cbe514 | 53 | /* these are used by src/msw/version.rc and should always be ASCII, not Unicode */ |
c0589c62 VZ |
54 | #define wxVERSION_NUM_STRING \ |
55 | wxMAKE_VERSION_STRING(wxMAJOR_VERSION, wxMINOR_VERSION, wxRELEASE_NUMBER) | |
56 | #define wxVERSION_NUM_DOT_STRING \ | |
57 | wxMAKE_VERSION_DOT_STRING(wxMAJOR_VERSION, wxMINOR_VERSION, wxRELEASE_NUMBER) | |
1fd4a033 | 58 | |
34cbe514 | 59 | /* some more defines, not really sure if they're [still] useful */ |
d0ee33f5 | 60 | #define wxVERSION_NUMBER ( (wxMAJOR_VERSION * 1000) + (wxMINOR_VERSION * 100) + wxRELEASE_NUMBER ) |
d5a07b9e | 61 | #define wxBETA_NUMBER 0 |
d0ee33f5 | 62 | #define wxVERSION_FLOAT ( wxMAJOR_VERSION + (wxMINOR_VERSION/10.0) + (wxRELEASE_NUMBER/100.0) + (wxBETA_NUMBER/10000.0) ) |
c801d85f | 63 | |
34cbe514 | 64 | /* check if the current version is at least major.minor.release */ |
f6bcfd97 BP |
65 | #define wxCHECK_VERSION(major,minor,release) \ |
66 | (wxMAJOR_VERSION > (major) || \ | |
67 | (wxMAJOR_VERSION == (major) && wxMINOR_VERSION > (minor)) || \ | |
68 | (wxMAJOR_VERSION == (major) && wxMINOR_VERSION == (minor) && wxRELEASE_NUMBER >= (release))) | |
69 | ||
eeade4cc VZ |
70 | /* the same but check the subrelease also */ |
71 | #define wxCHECK_VERSION_FULL(major,minor,release,subrel) \ | |
d0ee33f5 | 72 | (wxCHECK_VERSION(major, minor, release) && \ |
eeade4cc VZ |
73 | ((major) != wxMAJOR_VERSION || \ |
74 | (minor) != wxMINOR_VERSION || \ | |
75 | (release) != wxRELEASE_NUMBER || \ | |
d0ee33f5 | 76 | (subrel) <= wxSUBRELEASE_NUMBER)) |
eeade4cc | 77 | |
34cbe514 | 78 | #endif /* _WX_VERSION_H_ */ |
1fd4a033 | 79 |