=?UTF-8?Q?Iv=C3=A1n=20Matellanes=20?=: msvcirt: Print error messages in unimplemented functions.

Alexandre Julliard julliard at wine.codeweavers.com
Wed Jun 17 10:18:11 CDT 2015


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

Author: Iván Matellanes <matellanesivan at gmail.com>
Date:   Tue Jun 16 11:32:37 2015 +0200

msvcirt: Print error messages in unimplemented functions.

---

 dlls/msvcirt/msvcirt.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dlls/msvcirt/msvcirt.c b/dlls/msvcirt/msvcirt.c
index c2e6c14..47a7f28 100644
--- a/dlls/msvcirt/msvcirt.c
+++ b/dlls/msvcirt/msvcirt.c
@@ -358,6 +358,7 @@ DEFINE_THISCALL_WRAPPER(streambuf_overflow, 8)
 #define call_streambuf_overflow(this, c) CALL_VTBL_FUNC(this, 28, int, (streambuf*, int), (this, c))
 int __thiscall streambuf_overflow(streambuf *this, int c)
 {
+    ERR("overflow is not implemented in streambuf\n");
     return EOF;
 }
 
@@ -484,6 +485,7 @@ DEFINE_THISCALL_WRAPPER(streambuf_underflow, 4)
 #define call_streambuf_underflow(this) CALL_VTBL_FUNC(this, 32, int, (streambuf*), (this))
 int __thiscall streambuf_underflow(streambuf *this)
 {
+    ERR("underflow is not implemented in streambuf\n");
     return EOF;
 }
 




More information about the wine-cvs mailing list