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:
-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