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.

54 lines
1.1 KiB

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1994 - 1997.
  5. //
  6. // File: welcome.hxx
  7. //
  8. // Contents: Task wizard Naming property page.
  9. //
  10. // Classes: CNameItPage
  11. //
  12. // History: 11-21-1997 SusiA Stole from Task Scheduler wizard
  13. //
  14. //---------------------------------------------------------------------------
  15. #ifndef __NAMEIT_HXX_
  16. #define __NAMEIT_HXX_
  17. //+--------------------------------------------------------------------------
  18. //
  19. // Class: CNameItPage
  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 CNameItPage: public CWizPage
  27. {
  28. public:
  29. //
  30. // Object creation/destruction
  31. //
  32. CNameItPage::CNameItPage(
  33. HINSTANCE hinst,
  34. ISyncSchedule *pISyncSched,
  35. HPROPSHEETPAGE *phPSP);
  36. BOOL Initialize(HWND hDlg);
  37. BOOL SetScheduleName();
  38. private:
  39. };
  40. #endif // __NAMEIT_HXX_