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.

74 lines
1.2 KiB

  1. // Copyright (c) 2001 Microsoft Corporation
  2. //
  3. // File: FinishPage.h
  4. //
  5. // Synopsis: Declares the Finish Page for the CYS
  6. // wizard
  7. //
  8. // History: 02/03/2001 JeffJon Created
  9. #ifndef __CYS_FINISHPAGE_H
  10. #define __CYS_FINISHPAGE_H
  11. class FinishPage : public WizardPage
  12. {
  13. public:
  14. // Constructor
  15. FinishPage();
  16. // Destructor
  17. virtual
  18. ~FinishPage();
  19. protected:
  20. // Dialog overrides
  21. virtual
  22. void
  23. OnInit();
  24. virtual
  25. bool
  26. OnSetActive();
  27. // PropertyPage overrides
  28. virtual
  29. bool
  30. OnWizFinish();
  31. virtual
  32. bool
  33. OnHelp();
  34. virtual
  35. bool
  36. OnQueryCancel();
  37. bool
  38. OnNotify(
  39. HWND windowFrom,
  40. UINT_PTR controlIDFrom,
  41. UINT code,
  42. LPARAM lParam);
  43. private:
  44. void
  45. OpenLogFile(const String& logName);
  46. void
  47. TimeStampTheLog(HANDLE logfileHandle);
  48. // not defined: no copying allowed
  49. FinishPage(const FinishPage&);
  50. const FinishPage& operator=(const FinishPage&);
  51. };
  52. #endif // __CYS_FINISHPAGE_H