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:
parent
2f698f6392
commit
a7d22c2ec5
|
@ -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 */
|
||||||
|
|
Loading…
Reference in New Issue