Leaked source code of windows server 2003
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.1 KiB

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1994 - 1996.
  5. //
  6. // File: wizpage.hxx
  7. //
  8. // Contents: Wizard page class
  9. //
  10. // History: 4-30-1997 DavidMun Created
  11. //
  12. //---------------------------------------------------------------------------
  13. #ifndef __WIZPAGE_HXX_
  14. #define __WIZPAGE_HXX_
  15. //+--------------------------------------------------------------------------
  16. //
  17. // Class: CWizPage
  18. //
  19. // Purpose: Extend the CPropPage class with wizard-specific methods
  20. //
  21. // History: 5-05-1997 DavidMun Created
  22. //
  23. //---------------------------------------------------------------------------
  24. class CWizPage
  25. {
  26. public:
  27. virtual ~CWizPage();
  28. protected:
  29. PROPSHEETPAGE m_psp;
  30. HWND m_hwnd;
  31. ISyncSchedule *m_pISyncSched;
  32. LRESULT
  33. _OnNotify(
  34. UINT uMessage,
  35. UINT uParam,
  36. LPARAM lParam);
  37. LRESULT
  38. _OnWizBack();
  39. LRESULT
  40. _OnWizNext();
  41. };
  42. #endif // __WIZPAGE_HXX_