mirror of
https://github.com/ETLCPP/etl.git
synced 2026-06-29 13:58:44 +08:00
Added wide character versions of the version string.
Added numerical version value
This commit is contained in:
parent
df735dec59
commit
741d922c33
@ -37,10 +37,14 @@ SOFTWARE.
|
||||
/// Definitions of the ETL version
|
||||
///\ingroup utilities
|
||||
|
||||
#define ETL_VERSION "11.14.0"
|
||||
#define ETL_VERSION "11.14.0"
|
||||
#define ETL_VERSION_W L"11.14.0"
|
||||
#define ETL_VERSION_U16 u"11.14.0"
|
||||
#define ETL_VERSION_U32 U"11.14.0"
|
||||
#define ETL_VERSION_MAJOR 11
|
||||
#define ETL_VERSION_MINOR 14
|
||||
#define ETL_VERSION_PATCH 0
|
||||
#define ETL_VERSION_VALUE ((ETL_VERSION_MAJOR * 10000) + (ETL_VERSION_MINOR * 100) + ETL_VERSION_PATCH)
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user