1
0
mirror of https://github.com/valinet/ExplorerPatcher.git synced 2024-11-30 18:24:36 +01:00
ExplorerPatcher/version.h
2022-07-09 18:48:16 +03:00

17 lines
531 B
C

#define VER_MAJOR 22000
#define VER_MINOR 778
#define VER_BUILD_HI 47
#define VER_BUILD_LO 2
#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.778.47.2"
#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.778.47.2"