ruby-changes:52701
From: usa <ko1@a...>
Date: Thu, 4 Oct 2018 15:29:37 +0900 (JST)
Subject: [ruby-changes:52701] usa:r64913 (trunk): Support ubasecrt.dll 10.0.17763.1 included in Windows 10 October 2018 Update
usa 2018-10-04 15:29:31 +0900 (Thu, 04 Oct 2018) New Revision: 64913 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=64913 Log: Support ubasecrt.dll 10.0.17763.1 included in Windows 10 October 2018 Update Modified files: trunk/win32/win32.c Index: win32/win32.c =================================================================== --- win32/win32.c (revision 64912) +++ win32/win32.c (revision 64913) @@ -2443,6 +2443,7 @@ EXTERN_C _CRTIMP ioinfo * __pioinfo[]; https://github.com/ruby/ruby/blob/trunk/win32/win32.c#L2443 #endif static inline ioinfo* _pioinfo(int); + #define IOINFO_ARRAY_ELTS (1 << IOINFO_L2E) #define _osfhnd(i) (_pioinfo(i)->osfhnd) #define _osfile(i) (_pioinfo(i)->osfile) @@ -2517,7 +2518,7 @@ set_pioinfo_extra(void) https://github.com/ruby/ruby/blob/trunk/win32/win32.c#L2518 #else __pioinfo = *(ioinfo***)(p); #endif -#else +#endif int fd; fd = _open("NUL", O_RDONLY); @@ -2532,7 +2533,6 @@ set_pioinfo_extra(void) https://github.com/ruby/ruby/blob/trunk/win32/win32.c#L2533 /* not found, maybe something wrong... */ pioinfo_extra = 0; } -#endif } #else #define pioinfo_extra 0 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/