Commit 222cd629 authored by Iván Matellanes's avatar Iván Matellanes Committed by Alexandre Julliard

msvcirt: Implement strstreambuf::str.

parent a8b26a96
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment