1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #if !defined(AFX_EMAILINFO_H__B6ED9715_F758_4FAD_921A_17A289CA8663__INCLUDED_)
- #define AFX_EMAILINFO_H__B6ED9715_F758_4FAD_921A_17A289CA8663__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // EmailInfo.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // CEmailInfo dialog
- class CEmailInfo : public CDialog
- {
- // Construction
- public:
- CEmailInfo(CWnd* pParent = NULL); // standard constructor
- // Dialog Data
- //{{AFX_DATA(CEmailInfo)
- enum { IDD = IDD_SUBDLG_NETCFG_SMALL };
- CString m_EmailName;
- CString m_EmailAddress;
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CEmailInfo)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(CEmailInfo)
- virtual void OnOK();
- virtual void OnCancel();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- public:
- afx_msg void OnBnClickedOk();
- };
- BOOL CheckEmailAddress(CString email);
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_EMAILINFO_H__B6ED9715_F758_4FAD_921A_17A289CA8663__INCLUDED_)
|