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.

56 lines
1.0 KiB

  1. // LCWizSht.h : header file
  2. //
  3. // This class defines custom modal property sheet
  4. // CLicCompWizSheet.
  5. #ifndef __LCWIZSHT_H__
  6. #define __LCWIZSHT_H__
  7. #include "LCWizPgs.h"
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CLicCompWizSheet
  10. class CLicCompWizSheet : public CPropertySheet
  11. {
  12. DECLARE_DYNAMIC(CLicCompWizSheet)
  13. // Construction
  14. public:
  15. CLicCompWizSheet(CWnd* pParentWnd = NULL);
  16. // Data members
  17. public:
  18. CLicCompWizPage1 m_Page1;
  19. CLicCompWizPage3 m_Page3;
  20. CLicCompWizPage4 m_Page4;
  21. HICON m_hIcon;
  22. // Attributes
  23. public:
  24. // Operations
  25. public:
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CLicCompWizSheet)
  29. public:
  30. virtual BOOL OnInitDialog();
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. public:
  34. virtual ~CLicCompWizSheet();
  35. // Generated message map functions
  36. protected:
  37. //{{AFX_MSG(CLicCompWizSheet)
  38. //}}AFX_MSG
  39. DECLARE_MESSAGE_MAP()
  40. };
  41. /////////////////////////////////////////////////////////////////////////////
  42. #endif // __LCWIZSHT_H__