1 // Copyright (c) 2009-2014 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 #ifndef BITCOIN_CLIENTVERSION_H
6 #define BITCOIN_CLIENTVERSION_H
8 #if defined(HAVE_CONFIG_H)
9 #include "config/bitcoin-config.h"
13 * client versioning and copyright year
16 //! These need to be macros, as clientversion.cpp's and bitcoin*-res.rc's voodoo requires it
17 #define CLIENT_VERSION_MAJOR 0
18 #define CLIENT_VERSION_MINOR 11
19 #define CLIENT_VERSION_REVISION 99
20 #define CLIENT_VERSION_BUILD 0
22 //! Set to true for release, false for prerelease or test build
23 #define CLIENT_VERSION_IS_RELEASE false
26 * Copyright year (2009-this)
27 * Todo: update this when changing our copyright comments in the source
29 #define COPYRIGHT_YEAR 2015
31 #endif //HAVE_CONFIG_H
34 * Converts the parameter X to a string after macro replacement on X has been performed.
35 * Don't merge these into one macro!
37 #define STRINGIZE(X) DO_STRINGIZE(X)
38 #define DO_STRINGIZE(X) #X
40 //! Copyright string used in Windows .rc files
41 #define COPYRIGHT_STR "2009-" STRINGIZE(COPYRIGHT_YEAR) " The Bitcoin Core Developers"
44 * bitcoind-res.rc includes this file, but it cannot cope with real c++ code.
45 * WINDRES_PREPROC is defined to indicate that its pre-processor is running.
46 * Anything other than a define should be guarded below.
49 #if !defined(WINDRES_PREPROC)
54 static const int CLIENT_VERSION
=
55 1000000 * CLIENT_VERSION_MAJOR
56 + 10000 * CLIENT_VERSION_MINOR
57 + 100 * CLIENT_VERSION_REVISION
58 + 1 * CLIENT_VERSION_BUILD
;
60 extern const std::string CLIENT_NAME
;
61 extern const std::string CLIENT_BUILD
;
62 extern const std::string CLIENT_DATE
;
65 std::string
FormatFullVersion();
66 std::string
FormatSubVersion(const std::string
& name
, int nClientVersion
, const std::vector
<std::string
>& comments
);
68 #endif // WINDRES_PREPROC
70 #endif // BITCOIN_CLIENTVERSION_H