summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2014-02-04 21:55:27 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2014-02-04 21:55:27 (GMT)
commit69b73058c94347b31dd99a8e3e6918389225432b (patch)
treec7e4a20197ed03137dfb934abd2102f40146476e /win
parent6f4eb41b7618b4783184246c8a8484cbbd0f5aec (diff)
downloadtk-69b73058c94347b31dd99a8e3e6918389225432b.zip
tk-69b73058c94347b31dd99a8e3e6918389225432b.tar.gz
tk-69b73058c94347b31dd99a8e3e6918389225432b.tar.bz2
Satisfy required position of __stdcall from VC++
Diffstat (limited to 'win')
-rw-r--r--win/tkWinX.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tkWinX.c b/win/tkWinX.c
index 5457d43..cbd6032 100644
--- a/win/tkWinX.c
+++ b/win/tkWinX.c
@@ -171,8 +171,8 @@ TkGetServerInfo(
if (!buffer[0]) {
HANDLE handle = LoadLibraryW(L"NTDLL");
- __stdcall int(*getversion)(void *) =
- (__stdcall int(*)(void *))GetProcAddress(handle, "RtlGetVersion");
+ int(__stdcall *getversion)(void *) =
+ (int(__stdcall *)(void *))GetProcAddress(handle, "RtlGetVersion");
os.dwOSVersionInfoSize = sizeof(OSVERSIONINFOW);
if (!getversion || getversion(&os)) {
GetVersionExW(&os);