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.

81 lines
2.1 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1996-1997 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // ClusName.h
  7. //
  8. // Abstract:
  9. // Definition of the CChangeClusterNameDlg.
  10. //
  11. // Implementation File:
  12. // ClusName.cpp
  13. //
  14. // Author:
  15. // David Potter (davidp) April 29, 1997
  16. //
  17. // Revision History:
  18. //
  19. // Notes:
  20. //
  21. /////////////////////////////////////////////////////////////////////////////
  22. #ifndef _CLUSNAME_H_
  23. #define _CLUSNAME_H_
  24. /////////////////////////////////////////////////////////////////////////////
  25. // Include Files
  26. /////////////////////////////////////////////////////////////////////////////
  27. #ifndef _BASEDLG_H_
  28. #include "BaseDlg.h" // for CBaseDialog
  29. #endif
  30. /////////////////////////////////////////////////////////////////////////////
  31. // Forward Class Declarations
  32. /////////////////////////////////////////////////////////////////////////////
  33. class CChangeClusterNameDlg;
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CChangeClusterNameDlg dialog
  36. /////////////////////////////////////////////////////////////////////////////
  37. class CChangeClusterNameDlg : public CBaseDialog
  38. {
  39. // Construction
  40. public:
  41. CChangeClusterNameDlg(CWnd* pParent = NULL); // standard constructor
  42. // Dialog Data
  43. //{{AFX_DATA(CChangeClusterNameDlg)
  44. enum { IDD = IDD_EDIT_CLUSTER_NAME };
  45. CEdit m_editClusName;
  46. CButton m_pbOK;
  47. CString m_strClusName;
  48. //}}AFX_DATA
  49. // Overrides
  50. // ClassWizard generated virtual function overrides
  51. //{{AFX_VIRTUAL(CChangeClusterNameDlg)
  52. protected:
  53. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  54. //}}AFX_VIRTUAL
  55. // Implementation
  56. protected:
  57. CDialogHelp m_dlghelp;
  58. // Generated message map functions
  59. //{{AFX_MSG(CChangeClusterNameDlg)
  60. afx_msg void OnChangeClusName();
  61. virtual BOOL OnInitDialog();
  62. //}}AFX_MSG
  63. DECLARE_MESSAGE_MAP()
  64. }; //*** class CChangeClusterNameDlg
  65. /////////////////////////////////////////////////////////////////////////////
  66. #endif // _BASEDLG_H_