msvcirt: Implement strstreambuf::str.

This commit is contained in:
Iván Matellanes 2015-09-17 11:06:49 +02:00 committed by Alexandre Julliard
parent a8b26a96b4
commit 222cd629a3
1 changed files with 3 additions and 2 deletions

View File

@ -1326,8 +1326,9 @@ streambuf* __thiscall strstreambuf_setbuf(strstreambuf *this, char *buffer, int
DEFINE_THISCALL_WRAPPER(strstreambuf_str, 4)
char* __thiscall strstreambuf_str(strstreambuf *this)
{
FIXME("(%p) stub\n", this);
return NULL;
TRACE("(%p)\n", this);
strstreambuf_freeze(this, 1);
return this->base.base;
}
/* ?sync@strstreambuf@@UAEHXZ */