Commit 3a4dd04b authored by Iván Matellanes's avatar Iván Matellanes Committed by Alexandre Julliard

msvcirt: Implement istream::isfx.

parent eb91e1c6
......@@ -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 */
......
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