mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
699 B
22 lines
699 B
#ifndef _MAIL_H_
|
|
#define _MAIL_H_
|
|
|
|
|
|
// Read win.ini and determine if Simple MAPI is available
|
|
BOOL IsSimpleMAPIInstalled(void);
|
|
// Check to see if Athena is the default mail client
|
|
BOOL IsAthenaDefault(void);
|
|
|
|
// Send a mail message
|
|
VOID SendMailMsg(LPTSTR pszAddr, LPTSTR pszName);
|
|
|
|
// Are we in the middle of sending a mail message
|
|
BOOL IsSendMailInProgress(void);
|
|
|
|
/* Create a Conference Shortcut and bring up a mail message with */
|
|
/* the shortcut included as an attachment. */
|
|
BOOL CreateInvitationMail(LPCTSTR pszMailAddr, LPCTSTR pszMailName,
|
|
LPCTSTR pcszName, LPCTSTR pcszAddress,
|
|
DWORD dwTransport, BOOL fMissedYou);
|
|
|
|
#endif // _MAIL_H_
|