about summary refs log tree commit diff stats
path: root/Source/Version.h
blob: ed79ee500de2c9d7d2563c04a646fa296fb46f97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#define MAJOR 3
#define MINOR 0
#define PATCH 1

#define VERSION			MAJOR, MINOR, PATCH

#define TO_STRING2(s) L#s
#define TO_STRING(s) TO_STRING2(s)
#define VERSION_STR     TO_STRING(MAJOR) L"." TO_STRING(MINOR) L"." TO_STRING(PATCH)

#define PRODUCT_NAME L"Witness Randomizer"
#define WINDOW_CLASS L"WitnessRandomizer"