diff --git a/include/stdex/common.h b/include/stdex/common.h index c31ece8f1..da75130f0 100644 --- a/include/stdex/common.h +++ b/include/stdex/common.h @@ -28,27 +28,3 @@ /// Classes without virtual table /// #define STDEX_NOVTABLE __declspec(novtable) - - -// -// Product version as a single DWORD -// Note: Used for version comparison within C/C++ code. -// -#define STDEX_VERSION 0x01000100 - -// -// Product version by components -// Note: Resource Compiler has limited preprocessing capability, -// thus we need to specify major, minor and other version components -// separately. -// -#define STDEX_VERSION_MAJ 1 -#define STDEX_VERSION_MIN 0 -#define STDEX_VERSION_REV 1 -#define STDEX_VERSION_BUILD 0 - -// -// Human readable product version and build year for UI -// -#define STDEX_VERSION_STR "1.0.1" -#define STDEX_BUILD_YEAR_STR "2018"