Module: wine Branch: master Commit: d2cf09083de20e1521b6877496d2782f83fe2206 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d2cf09083de20e1521b6877496...
Author: André Hentschel nerv@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);