Source code of Windows XP (NT5)
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.

57 lines
953 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. Exch.h : header file
  5. File History:
  6. JonY Apr-96 created
  7. --*/
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CExch dialog
  10. class CExch : public CPropertyPage
  11. {
  12. DECLARE_DYNCREATE(CExch)
  13. // Construction
  14. public:
  15. CExch();
  16. ~CExch();
  17. // Dialog Data
  18. //{{AFX_DATA(CExch)
  19. enum { IDD = IDD_EXCHANGE_DIALOG };
  20. CString m_csDomainName;
  21. CString m_csServerName;
  22. //}}AFX_DATA
  23. // Overrides
  24. // ClassWizard generate virtual function overrides
  25. //{{AFX_VIRTUAL(CExch)
  26. public:
  27. virtual LRESULT OnWizardNext();
  28. virtual LRESULT OnWizardBack();
  29. protected:
  30. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  31. //}}AFX_VIRTUAL
  32. private:
  33. CString m_csDomain;
  34. // Implementation
  35. protected:
  36. // Generated message map functions
  37. //{{AFX_MSG(CExch)
  38. afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. };