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.

54 lines
945 B

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