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.

65 lines
1.3 KiB

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1994 - 1997.
  5. //
  6. // File: welcome.hxx
  7. //
  8. // Contents: Task wizard welcome (initial) property page.
  9. //
  10. // Classes: CWelcomePage
  11. //
  12. // History: 11-21-1997 SusiA Stole from Task Scheduler wizard
  13. //
  14. //---------------------------------------------------------------------------
  15. #ifndef __WELCOME_HXX_
  16. #define __WELCOME_HXX_
  17. //+--------------------------------------------------------------------------
  18. //
  19. // Class: CWelcomePage
  20. //
  21. // Purpose: Implement the task wizard welcome dialog
  22. //
  23. // History: 11-21-1997 SusiA Stole from Task Scheduler wizard
  24. //
  25. //---------------------------------------------------------------------------
  26. class CWelcomePage: public CWizPage
  27. {
  28. public:
  29. //
  30. // Object creation/destruction
  31. //
  32. #ifdef _WIZ97FONTS
  33. CWelcomePage::CWelcomePage(
  34. HINSTANCE hinst,
  35. HFONT hBoldFont,
  36. ISyncSchedule *pISyncSched,
  37. HPROPSHEETPAGE *phPSP);
  38. HFONT m_hBoldFont;
  39. #else
  40. CWelcomePage::CWelcomePage(
  41. HINSTANCE hinst,
  42. ISyncSchedule *pISyncSched,
  43. HPROPSHEETPAGE *phPSP);
  44. #endif // _WIZ97FONTS
  45. private:
  46. };
  47. #endif // __WELCOME_HXX_