msvcirt: Implement ios::rdbuf.

This commit is contained in:
Iván Matellanes 2015-07-17 16:36:46 +02:00 committed by Alexandre Julliard
parent 5fea620399
commit 0fa257924d
1 changed files with 2 additions and 2 deletions

View File

@ -1078,8 +1078,8 @@ void** __thiscall ios_pword(const ios *this, int index)
DEFINE_THISCALL_WRAPPER(ios_rdbuf, 4)
streambuf* __thiscall ios_rdbuf(const ios *this)
{
FIXME("(%p) stub\n", this);
return NULL;
TRACE("(%p)\n", this);
return this->sb;
}
/* ?rdstate@ios@@QBEHXZ */