diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-03-04 17:42:55 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-03-04 17:42:55 +0000 |
commit | 302b8ff05519b9b9387b56bf1e3fdc41834716a4 (patch) | |
tree | 6daab4fee2e2e97e13ebd5cbed06915d6a733ec1 /win32/win32.c | |
parent | 49af08e1887326f74cabef7b92dfd814ad7c144b (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/win32.c')
-rw-r--r-- | win32/win32.c | 4 |
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__ |