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.

35 lines
1.3 KiB

  1. // =================================================================================
  2. // H O T L I N K S . H
  3. // =================================================================================
  4. #ifndef __HOTLINKS_H
  5. #define __HOTLINKS_H
  6. #include <wab.h>
  7. #include <wabapi.h>
  8. // We will create a linked list of all selected entries that have an
  9. // email address and then use that to create the recip list for sendmail
  10. typedef struct _RecipList
  11. {
  12. LPTSTR lpszName;
  13. LPTSTR lpszEmail;
  14. LPSBinary lpSB;
  15. struct _RecipList * lpNext;
  16. } RECIPLIST, * LPRECIPLIST;
  17. BOOL LookupLinkColors(LPCOLORREF pclrLink, LPCOLORREF pclrViewed);
  18. BOOL CheckForOutlookExpress(LPTSTR szDllPath, DWORD cchDllPath);
  19. LPRECIPLIST AddTeimToRecipList(LPRECIPLIST lpList, WCHAR *pszEmail, WCHAR *pszName, LPSBinary lpSB);
  20. void FreeLPRecipList(LPRECIPLIST lpList);
  21. HRESULT HrStartMailThread(HWND hWndParent, ULONG nRecipCount, LPRECIPLIST lpList, BOOL bUseOEForSendMail);
  22. BOOL CheckForWAB(void);
  23. HRESULT HrLoadPathWABEXE(LPWSTR szPath, ULONG cbPath);
  24. DWORD DwGetOptions(void);
  25. DWORD DwSetOptions(DWORD dwVal);
  26. BOOL IEIsSpace(LPSTR psz);
  27. BOOL IsTelInstalled(void);
  28. DWORD DwGetMessStatus(void);
  29. DWORD DwGetDisableMessenger(void);
  30. DWORD DwSetDisableMessenger(DWORD dwVal);
  31. #endif