about summary refs log tree commit diff stats
path: root/Source/Main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Main.cpp')
-rw-r--r--Source/Main.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Main.cpp b/Source/Main.cpp index b4aba0d..e6b149f 100644 --- a/Source/Main.cpp +++ b/Source/Main.cpp
@@ -82,6 +82,10 @@ int APIENTRY wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmd
82 HWND hwnd = CreateWindow(WINDOW_CLASS, PRODUCT_NAME, WS_OVERLAPPEDWINDOW, 82 HWND hwnd = CreateWindow(WINDOW_CLASS, PRODUCT_NAME, WS_OVERLAPPEDWINDOW,
83 400, 200, 500, 500, nullptr, nullptr, hInstance, nullptr); 83 400, 200, 500, 500, nullptr, nullptr, hInstance, nullptr);
84 84
85 CreateWindow(L"STATIC", L"Version: " VERSION_STR,
86 WS_TABSTOP | WS_VISIBLE | WS_CHILD | SS_LEFT,
87 390, 15, 90, 16, hwnd, NULL, hInstance, NULL);
88
85 CreateWindow(L"STATIC", L"Enter a seed:", 89 CreateWindow(L"STATIC", L"Enter a seed:",
86 WS_TABSTOP | WS_VISIBLE | WS_CHILD | SS_LEFT, 90 WS_TABSTOP | WS_VISIBLE | WS_CHILD | SS_LEFT,
87 10, 15, 90, 16, hwnd, NULL, hInstance, NULL); 91 10, 15, 90, 16, hwnd, NULL, hInstance, NULL);