1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* include/ruby/win32.h (rb_w32_write_console): wrong prototype.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2010-11-29 05:20:08 +00:00
parent 5b54e9e685
commit dd4c394564
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Mon Nov 29 14:19:40 2010 NAKAMURA Usaku <usa@ruby-lang.org>
* include/ruby/win32.h (rb_w32_write_console): wrong prototype.
Mon Nov 29 14:10:55 2010 NAKAMURA Usaku <usa@ruby-lang.org>
* win32/win32.c (rb_w32_write_console): fixed indentation.

View file

@ -654,7 +654,7 @@ size_t rb_w32_read(int, void *, size_t);
size_t rb_w32_write(int, const void *, size_t);
int rb_w32_utime(const char *, const struct utimbuf *);
int rb_w32_uutime(const char *, const struct utimbuf *);
long rb_w32_write_console(unsigned long, int);
long rb_w32_write_console(uintptr_t, int); /* use uintptr_t instead of VALUE because it's not defined yet here */
int WINAPI rb_w32_Sleep(unsigned long msec);
int rb_w32_wait_events_blocking(HANDLE *events, int num, DWORD timeout);