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