]> git.saurik.com Git - wxWidgets.git/blame - include/wx/version.h
Added dde sample; added docs/index.htm
[wxWidgets.git] / include / wx / version.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: version.h
3// Purpose: wxWindows version numbers
4// Author: Julian Smart
5// Modified by:
6// Created: 29/01/98
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Julian Smart
9// Licence: wxWindows license
10/////////////////////////////////////////////////////////////////////////////
11
34138703
JS
12#ifndef _WX_VERSIONH__
13#define _WX_VERSIONH__
c801d85f
KB
14
15/* Bump-up with each new version */
16#define wxMAJOR_VERSION 2
17#define wxMINOR_VERSION 0
bbe0af5b
RR
18#define wxRELEASE_NUMBER 1
19#define wxVERSION_STRING "wxWindows 2.0.1"
c801d85f 20#define wxVERSION_NUMBER (wxMAJOR_VERSION * 1000) + (wxMINOR_VERSION * 100) + wxRELEASE_NUMBER
184b5d99 21#define wxBETA_NUMBER 17
3f1af920 22#define wxVERSION_FLOAT wxMAJOR_VERSION + (wxMINOR_VERSION/10.0) + (wxRELEASE_NUMBER/100.0) + (wxBETA_NUMBER/10000.0)
c801d85f
KB
23
24#endif
34138703 25 // _WX_VERSIONH__