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

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2012-07-06 18:52:33 +0400
committerCorinna Vinschen <corinna@vinschen.de>2012-07-06 18:52:33 +0400
commit9cfc9511cd15f126fe7da4801e65e5afbe7b5486 (patch)
tree6a4ccb11bb7342b5367af615dedac1205eaf0df8 /winsup/utils/locale.cc
parent3eedbf86113bf48d7e11349439b91fb034f5d1cd (diff)
* cygpath.cc: Change including headers to allow building against
Mingw64 headers. Include ntdef.h and ntdll.h rather than ddk headers. Define _WIN32_WINNT and WINVER as 0x0602. (RtlEqualUnicodePathPrefix): Drop definition. Pulled in from ntdll.h now. (get_device_name): s/Zw/Nt. * dumper.cc: Include sys/param.h (dumper::dump_memory_region): Use MIN rather than min. * locale.cc: Include stdlib.h. Define _WIN32_WINNT and WINVER as 0x0602. * ps.cc: Include ntdef.h and ntdll.h rather than ddk headers. * regtool.cc (regDeleteKeyEx): Drop WINADVAPI qualifier.
Diffstat (limited to 'winsup/utils/locale.cc')
-rw-r--r--winsup/utils/locale.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/winsup/utils/locale.cc b/winsup/utils/locale.cc
index e3c39c049..be57cf161 100644
--- a/winsup/utils/locale.cc
+++ b/winsup/utils/locale.cc
@@ -25,6 +25,7 @@
*/
#include <errno.h>
#include <stdio.h>
+#include <stdlib.h>
#include <ctype.h>
#include <getopt.h>
#include <string.h>
@@ -34,7 +35,8 @@
#include <limits.h>
#include <sys/cygwin.h>
#include <cygwin/version.h>
-#define WINVER 0x0601
+#define _WIN32_WINNT 0x0602
+#define WINVER 0x0602
#include <windows.h>
#define LOCALE_ALIAS "/usr/share/locale/locale.alias"