about summary refs log tree commit diff stats
path: root/Source/Version.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Version.h')
-rw-r--r--Source/Version.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/Version.h b/Source/Version.h index ed79ee5..5aac53d 100644 --- a/Source/Version.h +++ b/Source/Version.h
@@ -1,14 +1,14 @@
1#pragma once 1#pragma once
2 2
3#define TO_STRING2(s) L#s
4#define TO_STRING(s) TO_STRING2(s)
5
3#define MAJOR 3 6#define MAJOR 3
4#define MINOR 0 7#define MINOR 0
5#define PATCH 1 8#define PATCH 3
6
7#define VERSION MAJOR, MINOR, PATCH
8 9
9#define TO_STRING2(s) L#s
10#define TO_STRING(s) TO_STRING2(s)
11#define VERSION_STR TO_STRING(MAJOR) L"." TO_STRING(MINOR) L"." TO_STRING(PATCH) 10#define VERSION_STR TO_STRING(MAJOR) L"." TO_STRING(MINOR) L"." TO_STRING(PATCH)
11#define VERSION MAJOR, MINOR, PATCH
12 12
13#define PRODUCT_NAME L"Witness Randomizer" 13#define PRODUCT_NAME L"Witness Randomizer"
14#define WINDOW_CLASS L"WitnessRandomizer" 14#define WINDOW_CLASS L"WitnessRandomizer"