From 741d922c33cb12a3017526b36cdf471b08d69813 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Wed, 25 Jul 2018 14:09:16 +0100 Subject: [PATCH] Added wide character versions of the version string. Added numerical version value --- include/etl/version.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/etl/version.h b/include/etl/version.h index 933abed9..69ea1206 100644 --- a/include/etl/version.h +++ b/include/etl/version.h @@ -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