winemapi: List ignored attachments.

This commit is contained in:
André Hentschel 2012-12-12 20:14:36 +01:00 committed by Alexandre Julliard
parent 20128a923a
commit d2cf09083d

View file

@ -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);