* include/fcntl.h (_O_WTEXT, _O_U16TEXT, _O_U8TEXT) Define for

Vista.
This commit is contained in:
Danny Smith 2007-07-19 09:25:32 +00:00
parent 892635fd9f
commit b0ff8192ad
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2007-07-19 Danny Smith <dannysmith@users.sourceforge.net>
* include/fcntl.h (_O_WTEXT, _O_U16TEXT, _O_U8TEXT) Define for
Vista.
2007-07-12 Danny Smith <dannysmith@users.sourceforge.net>
[mingw-Bugs-1734142]
@ -17,7 +22,7 @@
* mingwex/gdtoa/mingw_snprintf.c: New file.
* mingwex/Makefile.in (GDTOA_DISTFILES): Add mingw_snprintf.c.
(GDTOA_OBJS): Add mingw_snprintf.O.
(GDTOA_OBJS): Add mingw_snprintf.o.
2007-06-28 Danny Smith <dannysmith@users.sourceforge.net>

View File

@ -46,6 +46,12 @@
#define _O_BINARY 0x8000 /* Input and output is not translated. */
#define _O_RAW _O_BINARY
#if (__MSVCRT_VERSION__ >= 0x0800)
#define _O_WTEXT 0x10000
#define _O_U16TEXT 0x20000
#define _O_U8TEXT 0x40000
#endif
#ifndef _NO_OLDNAMES
/* POSIX/Non-ANSI names for increased portability */