X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/bf133a73a78d9ea39ff5cd50dfea926253ec021a..4c48c989a62fba2809d684b30963b4411038fe96:/winmisc.c diff --git a/winmisc.c b/winmisc.c index 916e9885..10c9fe36 100644 --- a/winmisc.c +++ b/winmisc.c @@ -8,6 +8,8 @@ #include "putty.h" #include "winstuff.h" +OSVERSIONINFO osVersion; + void platform_get_x11_auth(char *display, int *proto, unsigned char *data, int *datalen) { @@ -88,6 +90,13 @@ void SaneEndDialog(HWND hwnd, int ret) SetWindowLong(hwnd, BOXFLAGS, DF_END); } +BOOL init_winver(void) +{ + ZeroMemory(&osVersion, sizeof(osVersion)); + osVersion.dwOSVersionInfoSize = sizeof (OSVERSIONINFO); + return GetVersionEx ( (OSVERSIONINFO *) &osVersion); +} + #ifdef DEBUG static FILE *debug_fp = NULL; static HANDLE debug_hdl = INVALID_HANDLE_VALUE;