From d2cf09083de20e1521b6877496d2782f83fe2206 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Hentschel?= Date: Wed, 12 Dec 2012 20:14:36 +0100 Subject: [PATCH] winemapi: List ignored attachments. --- dlls/winemapi/sendmail.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dlls/winemapi/sendmail.c b/dlls/winemapi/sendmail.c index e017e2c000b..03a29ba7eba 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);