summaryrefslogtreecommitdiffstats
path: root/win/tkWinPort.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2015-10-23 07:43:41 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2015-10-23 07:43:41 (GMT)
commit6aae6c7c27d9bc93bd2b4214f87f73c2ac500976 (patch)
tree28812454abc866430d1e5044c6ab6028dbd9c781 /win/tkWinPort.h
parentc8f3579bc34bec580577b6955087e17abdef383a (diff)
downloadtk-6aae6c7c27d9bc93bd2b4214f87f73c2ac500976.zip
tk-6aae6c7c27d9bc93bd2b4214f87f73c2ac500976.tar.gz
tk-6aae6c7c27d9bc93bd2b4214f87f73c2ac500976.tar.bz2
Fix [916c1095438eae56]: Tk does not compile because GetVersionExW triggers warnings
Diffstat (limited to 'win/tkWinPort.h')
-rw-r--r--win/tkWinPort.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/win/tkWinPort.h b/win/tkWinPort.h
index 8d7778c..b94628e 100644
--- a/win/tkWinPort.h
+++ b/win/tkWinPort.h
@@ -80,6 +80,13 @@
#define REDO_KEYSYM_LOOKUP
/*
+ * See ticket [916c1095438eae56]: GetVersionExW triggers warnings
+ */
+#if defined(_MSC_VER)
+# pragma warning(disable:4996)
+#endif
+
+/*
* The following macro checks to see whether there is buffered
* input data available for a stdio FILE.
*/