summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2014-02-08 07:41:17 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2014-02-08 07:41:17 (GMT)
commitd69c1d382b201c00c4e0344695a302238394f170 (patch)
tree4505f007fa376fabd602f450b526a4748635179f /win
parent14b32b82e117e3d6196985feca9750ad489f63cb (diff)
parent40094302e01a514d976396f2bcca4fc6a2d4d297 (diff)
downloadtcl-d69c1d382b201c00c4e0344695a302238394f170.zip
tcl-d69c1d382b201c00c4e0344695a302238394f170.tar.gz
tcl-d69c1d382b201c00c4e0344695a302238394f170.tar.bz2
merge trunk
Diffstat (limited to 'win')
-rw-r--r--win/tclWinInit.c21
1 files changed, 11 insertions, 10 deletions
diff --git a/win/tclWinInit.c b/win/tclWinInit.c
index b3f8f41..2c21d38 100644
--- a/win/tclWinInit.c
+++ b/win/tclWinInit.c
@@ -540,16 +540,17 @@ TclpSetVariables(
TclGetProcessGlobalValue(&defaultLibraryDir), TCL_GLOBAL_ONLY);
if (!osInfoInitialized) {
- HANDLE handle = LoadLibraryW(L"NTDLL");
- int(*getversion)(void *) = (int(*)(void *))GetProcAddress(handle, "RtlGetVersion");
- osInfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFOW);
- if (!getversion || getversion(&osInfo)) {
- GetVersionExW(&osInfo);
- }
- if (handle) {
- FreeLibrary(handle);
- }
- osInfoInitialized = 1;
+ HANDLE handle = LoadLibraryW(L"NTDLL");
+ int(__stdcall *getversion)(void *) =
+ (int(__stdcall *)(void *)) GetProcAddress(handle, "RtlGetVersion");
+ osInfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFOW);
+ if (!getversion || getversion(&osInfo)) {
+ GetVersionExW(&osInfo);
+ }
+ if (handle) {
+ FreeLibrary(handle);
+ }
+ osInfoInitialized = 1;
}
GetSystemInfo(&sys.info);