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.

40 lines
1.0 KiB

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 2000-2001 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // WizPageWelcome.h
  7. //
  8. // Maintained By:
  9. // David Potter (DavidP) 26-MAR-2001
  10. // Geoffrey Pease (GPease) 12-MAY-2000
  11. //
  12. //////////////////////////////////////////////////////////////////////////////
  13. #pragma once
  14. class CWelcomePage
  15. {
  16. friend class CClusCfgWizard;
  17. private: // data
  18. HWND m_hwnd; // Our HWND
  19. HFONT m_hFont; // Title font
  20. ECreateAddMode m_ecamCreateAddMode; // Creating? Adding?
  21. private: // methods
  22. CWelcomePage(
  23. ECreateAddMode ecamCreateAddModeIn
  24. );
  25. virtual ~CWelcomePage( void );
  26. LRESULT
  27. OnInitDialog( void );
  28. LRESULT
  29. OnNotify( WPARAM idCtrlIn, LPNMHDR pnmhdrIn );
  30. public: // methods
  31. static INT_PTR CALLBACK
  32. S_DlgProc( HWND hwndDlg, UINT nMsg, WPARAM wParam, LPARAM lParam );
  33. }; //*** class CWelcomePage