1
0
mirror of https://github.com/valinet/ExplorerPatcher.git synced 2025-02-13 17:22:43 +01:00
ExplorerPatcher/version.h

17 lines
534 B
C
Raw Normal View History

#define VER_MAJOR 22000
#define VER_MINOR 434
2022-01-04 05:18:36 +02:00
#define VER_BUILD_HI 41
#define VER_BUILD_LO 11
#define VER_FLAGS VS_FF_PRERELEASE
// The Binary form of the version numbers
#define VER_FILE VER_MAJOR, VER_MINOR, VER_BUILD_HI, VER_BUILD_LO
#define VER_PRODUCT VER_MAJOR, VER_MINOR, VER_BUILD_HI, VER_BUILD_LO
#define VER_STR(arg) #arg
// The String form of the version numbers
#define VER_FILE_STRING VALUE "FileVersion", "22000.434.41.11"
#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.434.41.11"