MailDlg.h
上传用户:rhhgjx
上传日期:2013-06-20
资源大小:36k
文件大小:1k
源码类别:

Email服务器

开发平台:

Visual C++

  1. // MailDlg.h : header file
  2. //
  3. #if !defined(AFX_MAILDLG_H__CBDE48D4_7164_43F7_A2D1_6EB3FE977C15__INCLUDED_)
  4. #define AFX_MAILDLG_H__CBDE48D4_7164_43F7_A2D1_6EB3FE977C15__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CMailDlg dialog
  10. class CMailDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CMailDlg(CWnd* pParent = NULL); // standard constructor
  15.     int (PASCAL *pAnsiToBase64) (void*,void*,int);
  16. // Dialog Data
  17. //{{AFX_DATA(CMailDlg)
  18. enum { IDD = IDD_MAIL_DIALOG };
  19. CButton m_Button1;
  20. CListBox m_List1;
  21. CString m_Srvr;
  22. UINT m_Port;
  23. CString m_UserName;
  24. CString m_PassWord;
  25. CString m_MailFrom;
  26. CString m_RcptTo;
  27. CString m_Title;
  28. CString m_Content;
  29. //}}AFX_DATA
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CMailDlg)
  32. protected:
  33. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. protected:
  37. HICON m_hIcon;
  38. // Generated message map functions
  39. //{{AFX_MSG(CMailDlg)
  40. virtual BOOL OnInitDialog();
  41. afx_msg void OnPaint();
  42. afx_msg HCURSOR OnQueryDragIcon();
  43. afx_msg void OnButton1();
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. };
  47. //{{AFX_INSERT_LOCATION}}
  48. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  49. #endif // !defined(AFX_MAILDLG_H__CBDE48D4_7164_43F7_A2D1_6EB3FE977C15__INCLUDED_)