5#ifndef BITCOIN_CLIENTVERSION_H
6#define BITCOIN_CLIENTVERSION_H
10#include <bitcoin-build-config.h>
13#if !defined(CLIENT_VERSION_MAJOR) || !defined(CLIENT_VERSION_MINOR) || !defined(CLIENT_VERSION_BUILD) || !defined(CLIENT_VERSION_IS_RELEASE) || !defined(COPYRIGHT_YEAR)
14#error Client version information missing: version is not defined by bitcoin-build-config.h or in any other way
18#define COPYRIGHT_STR "2009-" STRINGIZE(COPYRIGHT_YEAR) " " COPYRIGHT_HOLDERS_FINAL
21#if !defined(RC_INVOKED)
27 10000 * CLIENT_VERSION_MAJOR
28 + 100 * CLIENT_VERSION_MINOR
29 + 1 * CLIENT_VERSION_BUILD;
31extern const std::string
UA_NAME;
35std::string
FormatSubVersion(
const std::string&
name,
int nClientVersion,
const std::vector<std::string>& comments);
const std::string UA_NAME
std::string CopyrightHolders(const std::string &strPrefix)
std::string FormatSubVersion(const std::string &name, int nClientVersion, const std::vector< std::string > &comments)
Format the subversion field according to BIP 14 spec (https://github.com/bitcoin/bips/blob/master/bip...
static const int CLIENT_VERSION
std::string FormatFullVersion()
std::string LicenseInfo()
Returns licensing information (for -version)