From 0210709520b58f4bf542e342fce3466ae8539acb Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Fri, 20 Oct 2000 09:24:44 +0000 Subject: [PATCH] We must InitCommonControls() or the progress bar doesn't work on 95 [originally from svn r716] --- puttygen.c | 1 + 1 file changed, 1 insertion(+) diff --git a/puttygen.c b/puttygen.c index c633f5af..564067ae 100644 --- a/puttygen.c +++ b/puttygen.c @@ -657,6 +657,7 @@ static int CALLBACK MainDlgProc (HWND hwnd, UINT msg, } int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show) { + InitCommonControls(); hinst = inst; random_init(); return DialogBox(hinst, MAKEINTRESOURCE(201), NULL, MainDlgProc) != IDOK;