Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Chambers <joncham@gmail.com>2007-09-14 23:33:18 +0400
committerJonathan Chambers <joncham@gmail.com>2007-09-14 23:33:18 +0400
commit874b4278c1b3f45ed9299e68ac92aec3eadc3dd0 (patch)
tree36893a97630e3d6751b386b9dba8d4f3284ad5d4
parent4464df5f45a9ab87405d99dcc5200fc1c3e7784a (diff)
2007-09-14 Jonathan Chambers <joncham@gmail.com>
* winconfig.h: Define WINVER and _WIN32_WINNT for VS build. Contributed under MIT/X11 license. svn path=/trunk/mono/; revision=85836
-rw-r--r--ChangeLog7
-rw-r--r--winconfig.h4
2 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f41966e5d92..6e44ab8f4dc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2007-09-14 Jonathan Chambers <joncham@gmail.com>
+ * winconfig.h: Define WINVER and _WIN32_WINNT for VS
+ build.
+
+ Contributed under MIT/X11 license.
+
+2007-09-14 Jonathan Chambers <joncham@gmail.com>
+
* winconfig.h: Don't define HAVE_UNISTD_H on MSVC build.
Contributed under MIT/X11 license.
diff --git a/winconfig.h b/winconfig.h
index b1c81f98001..6601a8c6637 100644
--- a/winconfig.h
+++ b/winconfig.h
@@ -437,3 +437,7 @@
/* Version number of package */
#define VERSION "1.2"
+
+#define WINVER 0x0500
+
+#define _WIN32_WINNT 0x0500 \ No newline at end of file