diff options
Diffstat (limited to 'App2/Version.h')
-rw-r--r-- | App2/Version.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/App2/Version.h b/App2/Version.h new file mode 100644 index 0000000..0afb03f --- /dev/null +++ b/App2/Version.h | |||
@@ -0,0 +1,14 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #define TO_STRING2(s) L#s | ||
4 | #define TO_STRING(s) TO_STRING2(s) | ||
5 | |||
6 | #define MAJOR 0 | ||
7 | #define MINOR 0 | ||
8 | #define PATCH 1 | ||
9 | |||
10 | #define VERSION_STR TO_STRING(MAJOR) L"." TO_STRING(MINOR) L"." TO_STRING(PATCH) | ||
11 | #define VERSION MAJOR, MINOR, PATCH | ||
12 | |||
13 | #define PRODUCT_NAME L"Witness Challenge Randomizer" | ||
14 | #define WINDOW_CLASS L"WitnessChallengeRandomizer" | ||