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.

53 lines
914 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. What.h : header file
  5. File History:
  6. JonY Apr-96 created
  7. --*/
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CWhat dialog
  10. class CWhat : public CPropertyPage
  11. {
  12. DECLARE_DYNCREATE(CWhat)
  13. // Construction
  14. public:
  15. CWhat();
  16. ~CWhat();
  17. // Dialog Data
  18. //{{AFX_DATA(CWhat)
  19. enum { IDD = IDD_NAME_DLG };
  20. CString m_csGroupName;
  21. CString m_csDescription;
  22. //}}AFX_DATA
  23. // Overrides
  24. // ClassWizard generate virtual function overrides
  25. //{{AFX_VIRTUAL(CWhat)
  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. // Implementation
  33. protected:
  34. // Generated message map functions
  35. //{{AFX_MSG(CWhat)
  36. afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
  37. //}}AFX_MSG
  38. DECLARE_MESSAGE_MAP()
  39. };