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.

57 lines
1.4 KiB

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1994 - 1997.
  5. //
  6. // File: editschd.hxx
  7. //
  8. // Contents: Task schedule property page.
  9. //
  10. // Classes: CEditSchedPage
  11. //
  12. // History: 11-21-1997 SusiA
  13. //
  14. //---------------------------------------------------------------------------
  15. #ifndef __EDITSCHD_HXX_
  16. #define __EDITSCHD_HXX_
  17. //+--------------------------------------------------------------------------
  18. //
  19. // Class: CEditSchedPage
  20. //
  21. // Purpose: Implement the task wizard welcome dialog
  22. //
  23. // History: 11-21-1997 SusiA
  24. //
  25. //---------------------------------------------------------------------------
  26. class CEditSchedPage: public CWizPage
  27. {
  28. public:
  29. //
  30. // Object creation/destruction
  31. //
  32. CEditSchedPage(
  33. HINSTANCE hinst,
  34. ISyncSchedule *pISyncSched,
  35. HPROPSHEETPAGE *phPSP);
  36. BOOL ShowSchedName();
  37. void SetSchedNameDirty();
  38. BOOL SetSchedName();
  39. BOOL Initialize(HWND hwnd);
  40. private:
  41. BOOL _Initialize_ScheduleName(HWND hwnd);
  42. BOOL _Initialize_TriggerString(HWND hwnd);
  43. BOOL _Initialize_LastRunString(HWND hwnd);
  44. BOOL _Initialize_NextRunString(HWND hwnd);
  45. HWND m_hwnd;
  46. BOOL m_fSchedNameChanged;
  47. };
  48. #endif // __EDITSCHD_HXX_