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.

52 lines
866 B

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