示例#1
0
文件: MAPI.cs 项目: zixing131/LAEACC
 private static extern int MAPISendMail(IntPtr session, IntPtr uiParam,
                                        MapiMessage message, int flags, int reserved);
示例#2
0
文件: MAPI.cs 项目: zixing131/LAEACC
 private static void DisposeMessage(MapiMessage msg)
 {
     FreeMemory(msg.files, typeof(MapiFileDesc), msg.fileCount);
     FreeMemory(msg.recips, typeof(MapiRecipDesc), msg.recipCount);
     msg = null;
 }