diff options
author | hobbs <hobbs> | 2000-03-31 08:52:25 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-03-31 08:52:25 (GMT) |
commit | bfc465013806bbc8b695f2bbe20707a6b25ad961 (patch) | |
tree | 98cafa8492f8f5cdc15405f98b3da66ac0f35396 /win/tclWinInit.c | |
parent | 3c56f64822ed7b64de23a900456152fe8ee1fb60 (diff) | |
download | tcl-bfc465013806bbc8b695f2bbe20707a6b25ad961.zip tcl-bfc465013806bbc8b695f2bbe20707a6b25ad961.tar.gz tcl-bfc465013806bbc8b695f2bbe20707a6b25ad961.tar.bz2 |
* generic/tclInt.decls:
* generic/tclIntPlatDecls.h:
* generic/tclStubInit.c:
* win/tclWin32Dll.c: removed TclWinSynchSpawn (vestige of Win32s
support).
* win/tclWinReg.c: made use of TclWinGetPlatformId instead of
getting info again
* win/tclWinPort.h:
* win/Makefile.in:
* win/configure.in:
* win/tcl.m4: Added support for gcc/mingw on Windows [Bug: 4234]
Diffstat (limited to 'win/tclWinInit.c')
-rw-r--r-- | win/tclWinInit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinInit.c b/win/tclWinInit.c index c56958a..dbf44ea 100644 --- a/win/tclWinInit.c +++ b/win/tclWinInit.c @@ -7,7 +7,7 @@ * Copyright (c) 1998-1999 by Scriptics Corporation. * All rights reserved. * - * RCS: @(#) $Id: tclWinInit.c,v 1.21 1999/12/09 14:44:11 hobbs Exp $ + * RCS: @(#) $Id: tclWinInit.c,v 1.22 2000/03/31 08:52:31 hobbs Exp $ */ #include "tclWinInt.h" @@ -549,7 +549,7 @@ TclpSetVariables(interp) OSVERSIONINFOA osInfo; Tcl_DString ds; - osInfo.dwOSVersionInfoSize = sizeof(osInfo); + osInfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFOA); GetVersionExA(&osInfo); oemId = (OemId *) &sysInfo; |