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.
|
|
// =================================================================================
// H O T L I N K S . H
// =================================================================================
#ifndef __HOTLINKS_H
#define __HOTLINKS_H
#include <wab.h>
#include <wabapi.h>
// We will create a linked list of all selected entries that have an
// email address and then use that to create the recip list for sendmail
typedef struct _RecipList { LPTSTR lpszName; LPTSTR lpszEmail; LPSBinary lpSB; struct _RecipList * lpNext; } RECIPLIST, * LPRECIPLIST;
BOOL LookupLinkColors(LPCOLORREF pclrLink, LPCOLORREF pclrViewed); BOOL CheckForOutlookExpress(LPTSTR szDllPath, DWORD cchDllPath); LPRECIPLIST AddTeimToRecipList(LPRECIPLIST lpList, WCHAR *pszEmail, WCHAR *pszName, LPSBinary lpSB); void FreeLPRecipList(LPRECIPLIST lpList); HRESULT HrStartMailThread(HWND hWndParent, ULONG nRecipCount, LPRECIPLIST lpList, BOOL bUseOEForSendMail); BOOL CheckForWAB(void); HRESULT HrLoadPathWABEXE(LPWSTR szPath, ULONG cbPath); DWORD DwGetOptions(void); DWORD DwSetOptions(DWORD dwVal); BOOL IEIsSpace(LPSTR psz); BOOL IsTelInstalled(void); DWORD DwGetMessStatus(void); DWORD DwGetDisableMessenger(void); DWORD DwSetDisableMessenger(DWORD dwVal);
#endif
|