about summary refs log tree commit diff stats
path: root/App
diff options
context:
space:
mode:
Diffstat (limited to 'App')
-rw-r--r--App/Main.cpp3
-rw-r--r--App/Version.h4
2 files changed, 4 insertions, 3 deletions
diff --git a/App/Main.cpp b/App/Main.cpp index 8df3e6e..edf0898 100644 --- a/App/Main.cpp +++ b/App/Main.cpp
@@ -267,12 +267,13 @@ int APIENTRY wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance
267 // g_rngDebug = CreateWindow(L"STATIC", L"", 267 // g_rngDebug = CreateWindow(L"STATIC", L"",
268 // WS_TABSTOP | WS_VISIBLE | WS_CHILD | SS_LEFT, 268 // WS_TABSTOP | WS_VISIBLE | WS_CHILD | SS_LEFT,
269 // 200, 80, 200, 200, g_hwnd, NULL, g_hInstance, NULL); 269 // 200, 80, 200, 200, g_hwnd, NULL, g_hInstance, NULL);
270 270#ifndef NDEBUG
271 g_panelId = CreateText(200, 100, 100, L"59"); 271 g_panelId = CreateText(200, 100, 100, L"59");
272 CreateButton(200, 130, 100, L"Read", TMP1); 272 CreateButton(200, 130, 100, L"Read", TMP1);
273 CreateButton(200, 160, 100, L"Write", TMP2); 273 CreateButton(200, 160, 100, L"Write", TMP2);
274 CreateButton(200, 190, 100, L"Solve", TMP3); 274 CreateButton(200, 190, 100, L"Solve", TMP3);
275 CreateButton(200, 220, 100, L"Randomize2", TMP4); 275 CreateButton(200, 220, 100, L"Randomize2", TMP4);
276#endif
276 277
277 g_witnessProc->StartHeartbeat(g_hwnd); 278 g_witnessProc->StartHeartbeat(g_hwnd);
278 279
diff --git a/App/Version.h b/App/Version.h index 8068f03..1541697 100644 --- a/App/Version.h +++ b/App/Version.h
@@ -3,8 +3,8 @@
3#define TO_STRING2(s) L#s 3#define TO_STRING2(s) L#s
4#define TO_STRING(s) TO_STRING2(s) 4#define TO_STRING(s) TO_STRING2(s)
5 5
6#define MAJOR 5 6#define MAJOR 6
7#define MINOR 2 7#define MINOR 0
8#define PATCH 0 8#define PATCH 0
9 9
10#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)