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.

48 lines
1.1 KiB

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1994 - 1998.
  5. //
  6. // File: finish.hxx
  7. //
  8. // Contents: Task wizard onestop finish property page.
  9. //
  10. // Classes: CFinishPage
  11. //
  12. // History: 12-08-1998 SusiA
  13. //
  14. //---------------------------------------------------------------------------
  15. #ifndef __FINISH_HXX_
  16. #define __FINISH_HXX_
  17. //+--------------------------------------------------------------------------
  18. //
  19. // Class: CFinishPage
  20. //
  21. // Purpose: Implement the task wizard finish dialog
  22. //
  23. // History: 11-21-1998 SusiA
  24. //
  25. //---------------------------------------------------------------------------
  26. class CFinishPage: public CWizPage
  27. {
  28. public:
  29. //
  30. // Object creation/destruction
  31. //
  32. CFinishPage::CFinishPage(
  33. HINSTANCE hinst,
  34. ISyncSchedule *pISyncSched,
  35. HPROPSHEETPAGE *phPSP);
  36. BOOL Initialize(HWND hDlg);
  37. BOOL OnPSNSetActive(LPARAM lParam);
  38. private:
  39. };
  40. #endif // __TASKSECURITY_HXX_