msvcirt: Implement istream::isfx.

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>
This commit is contained in:
Iván Matellanes 2016-07-15 10:26:56 +01:00 committed by Alexandre Julliard
parent eb91e1c677
commit 3a4dd04b11
1 changed files with 6 additions and 1 deletions

View File

@ -3097,7 +3097,12 @@ int __thiscall istream_ipfx(istream *this, int need)
DEFINE_THISCALL_WRAPPER(istream_isfx, 4)
void __thiscall istream_isfx(istream *this)
{
FIXME("(%p) stub\n", this);
ios *base = istream_get_ios(this);
TRACE("(%p)\n", this);
ios_unlockbuf(base);
ios_unlock(base);
}
/* ?get@istream@@IAEAAV1@PADHH@Z */