* win32/win32.c (ioinfo): VC++8 support, forgotten to commit.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9795 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2006-01-05 10:05:08 +00:00
parent 5eb861ec37
commit 4f092ec3d0
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Thu Jan 5 19:03:09 2006 NAKAMURA Usaku <usa@ruby-lang.org>
* win32/win32.c (ioinfo): VC++8 support, forgotten to commit.
Sun Jan 1 17:07:59 2006 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> Sun Jan 1 17:07:59 2006 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
* win32/win32.c (rb_w32_seekdir): should not segfault even if passed * win32/win32.c (rb_w32_seekdir): should not segfault even if passed

View file

@ -1582,6 +1582,10 @@ typedef struct {
char pipech2[2]; char pipech2[2];
#endif #endif
#endif #endif
#if _MSC_VER >= 1400
char textmode;
char pipech2[2];
#endif
} ioinfo; } ioinfo;
#if !defined _CRTIMP || defined __MINGW32__ #if !defined _CRTIMP || defined __MINGW32__