msvcirt: Implement strstreambuf::sync.

This commit is contained in:
Iván Matellanes 2015-09-17 11:06:52 +02:00 committed by Alexandre Julliard
parent 675ad97a69
commit ea953271de
1 changed files with 2 additions and 2 deletions

View File

@ -1371,8 +1371,8 @@ char* __thiscall strstreambuf_str(strstreambuf *this)
DEFINE_THISCALL_WRAPPER(strstreambuf_sync, 4) DEFINE_THISCALL_WRAPPER(strstreambuf_sync, 4)
int __thiscall strstreambuf_sync(strstreambuf *this) int __thiscall strstreambuf_sync(strstreambuf *this)
{ {
FIXME("(%p) stub\n", this); TRACE("(%p)\n", this);
return EOF; return 0;
} }
/* ?underflow@strstreambuf@@UAEHXZ */ /* ?underflow@strstreambuf@@UAEHXZ */