-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathversion.h
27 lines (21 loc) · 1.01 KB
/
version.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#define MAJOR_VERSION_STR "SLVMAJOR"
#define MAJOR_VERSION_INT SLVMAJOR
#define SUB_VERSION_STR "SLVMINOR"
#define SUB_VERSION_INT SLVMINOR
#define RELEASE_NUMBER_STR "SLVPATCH"
#define RELEASE_NUMBER_INT SLVPATCH
#define BUILD_NUMBER_STR "0" // Build number to be sure that each result could identified.
#define BUILD_NUMBER_INT 0
// Version with build number (example "1.0.3.342")
#define FULL_VERSION_STR MAJOR_VERSION_STR "." SUB_VERSION_STR "." RELEASE_NUMBER_STR "." BUILD_NUMBER_STR
// Version without build number (example "1.0.3")
#define VERSION_STR MAJOR_VERSION_STR "." SUB_VERSION_STR "." RELEASE_NUMBER_STR
#define stringOriginalFilename "StudioLink.dll"
#if PLATFORM_64
#define stringFileDescription "StudioLink Plugin (64Bit)"
#else
#define stringFileDescription "StudioLink Plugin"
#endif
#define stringCompanyName "IT-Service Sebastian Reimers\0"
#define stringLegalCopyright "2017-2018 IT-Service Sebastian Reimers"
#define stringLegalTrademarks "VST is a trademark of Steinberg Media Technologies GmbH"