about summary refs log tree commit diff stats
path: root/App2/Version.h
diff options
context:
space:
mode:
authorjbzdarkid <jbzdarkid@gmail.com>2021-01-17 16:15:37 -0800
committerjbzdarkid <jbzdarkid@gmail.com>2021-01-17 16:15:37 -0800
commitfa5c27c9b5991f2daf526eb5fdd3e41200afa63e (patch)
treef33b1822bcd756b53ddcfcccdcefe07c4654c32e /App2/Version.h
parent6b11e2530eaaecb1e4ab75821b12521fbb44062c (diff)
downloadwitness-tutorializer-fa5c27c9b5991f2daf526eb5fdd3e41200afa63e.tar.gz
witness-tutorializer-fa5c27c9b5991f2daf526eb5fdd3e41200afa63e.tar.bz2
witness-tutorializer-fa5c27c9b5991f2daf526eb5fdd3e41200afa63e.zip
Try adding app2
Diffstat (limited to 'App2/Version.h')
-rw-r--r--App2/Version.h14
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"