SMTPEMailDlg.h
上传用户:hebinsheng
上传日期:2015-04-30
资源大小:25k
文件大小:2k
源码类别:

ICQ弱点检测代码

开发平台:

Visual C++

  1. // SMTPEMailDlg.h : header file
  2. //
  3. #if !defined(AFX_SMTPEMAILDLG_H__7A372810_6281_41F7_952C_ACE82C790A18__INCLUDED_)
  4. #define AFX_SMTPEMAILDLG_H__7A372810_6281_41F7_952C_ACE82C790A18__INCLUDED_
  5. #include "MailMessage.h"
  6. #include "SMTP.H"
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CSMTPEMailDlg dialog
  12. class CSMTPEMailDlg : public CDialog
  13. {
  14. // Construction
  15. public:
  16. CSMTPEMailDlg(CWnd* pParent = NULL); // standard constructor
  17. // Dialog Data
  18. //{{AFX_DATA(CSMTPEMailDlg)
  19. enum { IDD = IDD_SMTPEMAIL_DIALOG };
  20. CComboBox m_ctrlComboTo;
  21. CComboBox m_ctrlComboSubject;
  22. CComboBox m_ctrlComboServer;
  23. CComboBox m_ctrlComboFrom;
  24. CString m_strComboFrom;
  25. CString m_strComboServer;
  26. CString m_strComboSubject;
  27. CString m_strComboTo;
  28. CString m_strEditBody;
  29. //}}AFX_DATA
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CSMTPEMailDlg)
  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(CSMTPEMailDlg)
  40. virtual BOOL OnInitDialog();
  41. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  42. afx_msg void OnPaint();
  43. afx_msg HCURSOR OnQueryDragIcon();
  44. virtual void OnOK();
  45. afx_msg void OnAbout();
  46. afx_msg void OnSend();
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. };
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52. #endif // !defined(AFX_SMTPEMAILDLG_H__7A372810_6281_41F7_952C_ACE82C790A18__INCLUDED_)