29 lines
1.1 KiB
C++
29 lines
1.1 KiB
C++
#pragma once
|
|
namespace DFHack {
|
|
namespace Version {
|
|
const char *dfhack_version();
|
|
const char *df_version();
|
|
const char *dfhack_release();
|
|
const char *git_description();
|
|
const char *git_commit();
|
|
const char *git_xml_commit();
|
|
const char *git_xml_expected_commit();
|
|
bool git_xml_match();
|
|
bool is_release();
|
|
bool is_prerelease();
|
|
}
|
|
}
|
|
|
|
#ifndef NO_DFHACK_VERSION_MACROS
|
|
#define DF_VERSION (DFHack::Version::df_version())
|
|
#define DFHACK_RELEASE (DFHack::Version::dfhack_release())
|
|
#define DFHACK_VERSION (DFHack::Version::dfhack_version())
|
|
#define DFHACK_GIT_DESCRIPTION (DFHack::Version::git_description())
|
|
#define DFHACK_GIT_COMMIT (DFHack::Version::git_commit())
|
|
#define DFHACK_GIT_XML_COMMIT (DFHack::Version::git_xml_commit())
|
|
#define DFHACK_GIT_XML_EXPECTED_COMMIT (DFHack::Version::git_xml_expected_commit())
|
|
#define DFHACK_GIT_XML_MATCH (DFHack::Version::git_xml_match())
|
|
#define DFHACK_IS_RELEASE (DFHack::Version::is_release())
|
|
#define DFHACK_IS_PRERELEASE (DFHack::Version::is_prerelease())
|
|
#endif
|