summaryrefslogtreecommitdiffstats
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
commit2346b3e1cb92bb5e2e9d2525a96368e5ef94848a (patch)
tree6daab4fee2e2e97e13ebd5cbed06915d6a733ec1 /win32
parent8eb01984bafdb7224907bb0d5a3fa2bff7d5275b (diff)
downloadruby-2346b3e1cb92bb5e2e9d2525a96368e5ef94848a.tar.gz
ruby-2346b3e1cb92bb5e2e9d2525a96368e5ef94848a.tar.xz
ruby-2346b3e1cb92bb5e2e9d2525a96368e5ef94848a.zip
* file.c (eaccess): workaround for VC++8 runtime.
* win32/win32.c (ioinfo): VC++8 support. git-svn-id: http://svn.ruby-lang.org/repos/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 31b0eb07a..98ce51b71 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__