* fhandler.h (fhandler_pipe::raw_read): Remove __stdcall decoration.

* pipe.cc (fhandler_pipe::raw_read): Ditto.
This commit is contained in:
Christopher Faylor 2008-09-11 04:41:24 +00:00
parent 7b9e380f03
commit e3cbf1cc48
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2008-09-11 Christopher Faylor <me+cygwin@cgf.cx>
* fhandler.h (fhandler_pipe::raw_read): Remove __stdcall decoration.
* pipe.cc (fhandler_pipe::raw_read): Ditto.
2008-09-11 Christopher Faylor <me+cygwin@cgf.cx>
* cygheap.cc (creturn): Reorganize to avoid a new compiler

View File

@ -542,7 +542,7 @@ public:
select_record *select_write (select_record *s);
select_record *select_except (select_record *s);
char *get_proc_fd_name (char *buf);
void __stdcall raw_read (void *ptr, size_t& len);
void raw_read (void *ptr, size_t& len);
int raw_write (const void *, size_t);
int open (int flags, mode_t mode = 0);
int dup (fhandler_base *child);

View File

@ -292,7 +292,7 @@ fhandler_pipe::get_proc_fd_name (char *buf)
return buf;
}
void __stdcall
void
fhandler_pipe::raw_read (void *in_ptr, size_t& in_len)
{
return read_overlapped (in_ptr, in_len);