msvcirt: Implement istream::ws.

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>
oldstable
Iván Matellanes 2016-07-21 10:56:51 +01:00 committed by Alexandre Julliard
parent ae5343bd97
commit 681e905b6e
1 changed files with 3 additions and 2 deletions

View File

@ -3546,8 +3546,9 @@ int __thiscall istream_getdouble(istream *this, char *str, int count)
/* ?ws@@YAAEAVistream@@AEAV1@@Z */
istream* __cdecl istream_ws(istream *this)
{
FIXME("(%p) stub\n", this);
return this;
TRACE("(%p)\n", this);
istream_eatwhite(this);
return this;
}
/******************************************************************