=?UTF-8?Q?Iv=C3=A1n=20Matellanes=20?=: msvcirt: Implement istream::ws.

Alexandre Julliard julliard at winehq.org
Thu Jul 21 09:58:56 CDT 2016


Module: wine
Branch: master
Commit: 681e905b6e319baaa352f342a0ffa476b3242b58
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=681e905b6e319baaa352f342a0ffa476b3242b58

Author: Iván Matellanes <matellanesivan at gmail.com>
Date:   Thu Jul 21 10:56:51 2016 +0100

msvcirt: Implement istream::ws.

Signed-off-by: Iván Matellanes <matellanes.ivan at gmail.com>
Signed-off-by: Piotr Caban <piotr at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/msvcirt/msvcirt.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dlls/msvcirt/msvcirt.c b/dlls/msvcirt/msvcirt.c
index 9361d6b..7ea6541 100644
--- a/dlls/msvcirt/msvcirt.c
+++ b/dlls/msvcirt/msvcirt.c
@@ -3546,8 +3546,9 @@ int __thiscall istream_getdouble(istream *this, char *str, int count)
 /* ?ws@@YAAEAVistream@@AEAV1@@Z */
 istream* __cdecl istream_ws(istream *this)
 {
-   FIXME("(%p) stub\n", this);
-   return this;
+    TRACE("(%p)\n", this);
+    istream_eatwhite(this);
+    return this;
 }
 
 /******************************************************************




More information about the wine-cvs mailing list