msvcirt: Implement istream::gcount.

Signed-off-by: Iván Matellanes <matellanes.ivan@gmail.com>
Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Iván Matellanes 2016-07-15 10:26:54 +01:00 committed by Alexandre Julliard
parent 2f698f6392
commit a7d22c2ec5
1 changed files with 2 additions and 2 deletions

View File

@ -3057,8 +3057,8 @@ void __thiscall istream_eatwhite(istream *this)
DEFINE_THISCALL_WRAPPER(istream_gcount, 4) DEFINE_THISCALL_WRAPPER(istream_gcount, 4)
int __thiscall istream_gcount(const istream *this) int __thiscall istream_gcount(const istream *this)
{ {
FIXME("(%p) stub\n", this); TRACE("(%p)\n", this);
return 0; return this->count;
} }
/* ?ipfx@istream@@QAEHH@Z */ /* ?ipfx@istream@@QAEHH@Z */