msvcirt: Implement ostream manipulators.
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:
parent
2cb786b6a0
commit
38fb1062da
|
@ -2843,24 +2843,25 @@ ostream* __thiscall ostream_print_ios_manip(ostream *this, ios* (__cdecl *func)(
|
||||||
/* ?endl@@YAAEAVostream@@AEAV1@@Z */
|
/* ?endl@@YAAEAVostream@@AEAV1@@Z */
|
||||||
ostream* __cdecl ostream_endl(ostream *this)
|
ostream* __cdecl ostream_endl(ostream *this)
|
||||||
{
|
{
|
||||||
FIXME("(%p) stub\n", this);
|
TRACE("(%p)\n", this);
|
||||||
return this;
|
ostream_put_char(this, '\n');
|
||||||
|
return ostream_flush(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ?ends@@YAAAVostream@@AAV1@@Z */
|
/* ?ends@@YAAAVostream@@AAV1@@Z */
|
||||||
/* ?ends@@YAAEAVostream@@AEAV1@@Z */
|
/* ?ends@@YAAEAVostream@@AEAV1@@Z */
|
||||||
ostream* __cdecl ostream_ends(ostream *this)
|
ostream* __cdecl ostream_ends(ostream *this)
|
||||||
{
|
{
|
||||||
FIXME("(%p) stub\n", this);
|
TRACE("(%p)\n", this);
|
||||||
return this;
|
return ostream_put_char(this, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ?flush@@YAAAVostream@@AAV1@@Z */
|
/* ?flush@@YAAAVostream@@AAV1@@Z */
|
||||||
/* ?flush@@YAAEAVostream@@AEAV1@@Z */
|
/* ?flush@@YAAEAVostream@@AEAV1@@Z */
|
||||||
ostream* __cdecl ostream_flush_manip(ostream *this)
|
ostream* __cdecl ostream_flush_manip(ostream *this)
|
||||||
{
|
{
|
||||||
FIXME("(%p) stub\n", this);
|
TRACE("(%p)\n", this);
|
||||||
return this;
|
return ostream_flush(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************************
|
/******************************************************************
|
||||||
|
|
Loading…
Reference in New Issue