=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: winemapi: List ignored attachments.

Alexandre Julliard julliard at winehq.org
Wed Dec 12 15:14:56 CST 2012


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

Author: André Hentschel <nerv at dawncrow.de>
Date:   Wed Dec 12 20:14:36 2012 +0100

winemapi: List ignored attachments.

---

 dlls/winemapi/sendmail.c |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/dlls/winemapi/sendmail.c b/dlls/winemapi/sendmail.c
index e017e2c..03a29ba 100644
--- a/dlls/winemapi/sendmail.c
+++ b/dlls/winemapi/sendmail.c
@@ -155,7 +155,12 @@ ULONG WINAPI MAPISendMail(LHANDLE session, ULONG_PTR uiparam,
     }
 
     if (message->nFileCount)
-        FIXME("Ignoring attachments\n");
+    {
+        FIXME("Ignoring %u attachments:\n", message->nFileCount);
+        for (i = 0; i < message->nFileCount; i++)
+            FIXME("\t%s (%s)\n", debugstr_a(message->lpFiles[i].lpszPathName),
+                  debugstr_a(message->lpFiles[i].lpszFileName));
+    }
 
     /* Escape subject and body */
     subject = escape_string(message->lpszSubject, empty_string);




More information about the wine-cvs mailing list