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
1013 B

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