Leaked source code of windows server 2003
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
721 B

  1. #ifndef _MAIL_H_
  2. #define _MAIL_H_
  3. // Read win.ini and determine if Simple MAPI is available
  4. BOOL IsSimpleMAPIInstalled(void);
  5. // Check to see if Athena is the default mail client
  6. BOOL IsAthenaDefault(void);
  7. // Send a mail message
  8. VOID SendMailMsg(LPTSTR pszAddr, LPTSTR pszName);
  9. // Are we in the middle of sending a mail message
  10. BOOL IsSendMailInProgress(void);
  11. /* Create a Conference Shortcut and bring up a mail message with */
  12. /* the shortcut included as an attachment. */
  13. BOOL CreateInvitationMail(LPCTSTR pszMailAddr, LPCTSTR pszMailName,
  14. LPCTSTR pcszName, LPCTSTR pcszAddress,
  15. DWORD dwTransport, BOOL fMissedYou);
  16. #endif // _MAIL_H_