summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-03-04 17:42:55 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-03-04 17:42:55 +0000
commit302b8ff05519b9b9387b56bf1e3fdc41834716a4 (patch)
tree6daab4fee2e2e97e13ebd5cbed06915d6a733ec1 /win32
parent49af08e1887326f74cabef7b92dfd814ad7c144b (diff)
* file.c (eaccess): workaround for VC++8 runtime.
* win32/win32.c (ioinfo): VC++8 support. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8072 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r--win32/win32.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/win32/win32.c b/win32/win32.c
index 31b0eb07aa..98ce51b719 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -1585,6 +1585,10 @@ typedef struct {
int lockinitflag;
CRITICAL_SECTION lock;
#endif
+#if _MSC_VER >= 1400
+ char textmode;
+ char pipech2[2];
+#endif
} ioinfo;
#if !defined _CRTIMP || defined __MINGW32__