about summary refs log tree commit diff stats
path: root/Source/Version.h
diff options
context:
space:
mode:
authorjbzdarkid <jbzdarkid@gmail.com>2018-11-05 08:15:23 -0800
committerjbzdarkid <jbzdarkid@gmail.com>2018-11-05 08:15:23 -0800
commita828620c6447e8c51f6e9d1767eabe0fc5ade0a0 (patch)
treece54393a34eb02ce5f801487f170d9c0d99bb66e /Source/Version.h
parent1d1218aa855a0b7500c94d5017575855d646e1c4 (diff)
downloadwitness-tutorializer-a828620c6447e8c51f6e9d1767eabe0fc5ade0a0.tar.gz
witness-tutorializer-a828620c6447e8c51f6e9d1767eabe0fc5ade0a0.tar.bz2
witness-tutorializer-a828620c6447e8c51f6e9d1767eabe0fc5ade0a0.zip
moving stuff so I can test
Diffstat (limited to 'Source/Version.h')
-rw-r--r--Source/Version.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/Source/Version.h b/Source/Version.h deleted file mode 100644 index 05696d6..0000000 --- a/Source/Version.h +++ /dev/null
@@ -1,14 +0,0 @@
1#pragma once
2
3#define TO_STRING2(s) L#s
4#define TO_STRING(s) TO_STRING2(s)
5
6#define MAJOR 4
7#define MINOR 0
8#define PATCH 0
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 Randomizer"
14#define WINDOW_CLASS L"WitnessRandomizer"