19 lines
881 B
C
19 lines
881 B
C
// Zorg dat versies alfabetisch altijd op elkaar volgen!
|
|
#define SLNK_MAJOR_VERSION 2
|
|
#define SLNK_MINOR_VERSION 00
|
|
#define SLNK_BUILD_VERSION 0
|
|
|
|
// Define resource strings
|
|
#define ECHO(a) #a
|
|
#define STRINGIZE_SLNK_BUILD(major, minor, build) ECHO(major) "," ECHO(minor) ",0," ECHO(build)
|
|
#define STRINGIZE_SLNK_FULL(major, minor) ECHO(major) "." ECHO(minor)
|
|
|
|
// Deze wordt gebruikt in SLNKDWF.RC2 en eindigt in Version Tab van de properties
|
|
// Daar conformeren we aan de standaard(?)
|
|
#define SLNK_BUILDVERSION STRINGIZE_SLNK_BUILD(SLNK_MAJOR_VERSION, SLNK_MINOR_VERSION, SLNK_BUILD_VERSION)
|
|
|
|
// Deze wordt in splashscherm getoond en in About-scherm
|
|
// Bovendien wordt DonShowSplashVersion hiervan afgeleid
|
|
// Ergo: Voor de eenvoud niet de BUILD_VERSION tonen aan eindgebruikers
|
|
#define SLNK_FULLVERSION STRINGIZE_SLNK_FULL(SLNK_MAJOR_VERSION, SLNK_MINOR_VERSION)
|