2015-12-13 14:51:43 +01:00
|
|
|
// Copyright (c) 2009-2015 The Bitcoin Core developers
|
2014-10-26 09:32:04 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-08-28 22:26:56 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#ifndef BITCOIN_CLIENTVERSION_H
|
|
|
|
#define BITCOIN_CLIENTVERSION_H
|
2012-08-14 11:21:48 +02:00
|
|
|
|
2013-05-28 01:55:01 +02:00
|
|
|
#if defined(HAVE_CONFIG_H)
|
2020-03-19 23:46:56 +01:00
|
|
|
#include <config/dash-config.h>
|
2013-05-28 01:55:01 +02:00
|
|
|
#endif //HAVE_CONFIG_H
|
|
|
|
|
2017-04-07 15:37:31 +02:00
|
|
|
// Check that required client information is defined
|
2020-11-20 15:42:01 +01:00
|
|
|
#if !defined(CLIENT_VERSION_MAJOR) || !defined(CLIENT_VERSION_MINOR) || !defined(CLIENT_VERSION_BUILD) || !defined(CLIENT_VERSION_IS_RELEASE) || !defined(COPYRIGHT_YEAR)
|
2017-04-10 08:38:39 +02:00
|
|
|
#error Client version information missing: version is not defined by dash-config.h or in any other way
|
2017-04-07 15:37:31 +02:00
|
|
|
#endif
|
|
|
|
|
2014-10-26 09:32:04 +01:00
|
|
|
/**
|
|
|
|
* Converts the parameter X to a string after macro replacement on X has been performed.
|
|
|
|
* Don't merge these into one macro!
|
|
|
|
*/
|
2012-08-14 11:21:48 +02:00
|
|
|
#define STRINGIZE(X) DO_STRINGIZE(X)
|
|
|
|
#define DO_STRINGIZE(X) #X
|
|
|
|
|
2014-10-26 09:32:04 +01:00
|
|
|
//! Copyright string used in Windows .rc files
|
2016-02-04 13:41:58 +01:00
|
|
|
#define COPYRIGHT_STR "2009-" STRINGIZE(COPYRIGHT_YEAR) " The Bitcoin Core Developers, 2014-" STRINGIZE(COPYRIGHT_YEAR) " " COPYRIGHT_HOLDERS_FINAL
|
2014-06-27 14:51:46 +02:00
|
|
|
|
2014-10-26 09:32:04 +01:00
|
|
|
/**
|
2015-04-03 00:51:08 +02:00
|
|
|
* dashd-res.rc includes this file, but it cannot cope with real c++ code.
|
2014-10-26 09:32:04 +01:00
|
|
|
* WINDRES_PREPROC is defined to indicate that its pre-processor is running.
|
|
|
|
* Anything other than a define should be guarded below.
|
|
|
|
*/
|
2014-10-29 02:33:23 +01:00
|
|
|
|
|
|
|
#if !defined(WINDRES_PREPROC)
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
static const int CLIENT_VERSION =
|
2020-11-20 15:42:01 +01:00
|
|
|
10000 * CLIENT_VERSION_MAJOR
|
|
|
|
+ 100 * CLIENT_VERSION_MINOR
|
2014-10-29 02:33:23 +01:00
|
|
|
+ 1 * CLIENT_VERSION_BUILD;
|
|
|
|
|
|
|
|
extern const std::string CLIENT_NAME;
|
|
|
|
extern const std::string CLIENT_BUILD;
|
|
|
|
|
2018-03-08 13:17:34 +01:00
|
|
|
std::string FormatVersion(int nVersion);
|
2014-10-29 02:33:23 +01:00
|
|
|
std::string FormatFullVersion();
|
|
|
|
std::string FormatSubVersion(const std::string& name, int nClientVersion, const std::vector<std::string>& comments);
|
|
|
|
|
|
|
|
#endif // WINDRES_PREPROC
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#endif // BITCOIN_CLIENTVERSION_H
|