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.

45 lines
859 B

  1. /*****************************************************************************
  2. *
  3. * (C) COPYRIGHT MICROSOFT CORPORATION, 2000
  4. *
  5. * TITLE: end.h
  6. *
  7. * VERSION: 1.0
  8. *
  9. * AUTHOR: RickTu
  10. *
  11. * DATE: 11/7/00
  12. *
  13. * DESCRIPTION: End page class definition
  14. *
  15. *****************************************************************************/
  16. #ifndef _PRINT_PHOTOS_WIZARD_END_PAGE_DLG_PROC_
  17. #define _PRINT_PHOTOS_WIZARD_END_PAGE_DLG_PROC_
  18. class CEndPage
  19. {
  20. public:
  21. CEndPage( CWizardInfoBlob * pBlob );
  22. ~CEndPage();
  23. INT_PTR DoHandleMessage( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam );
  24. private:
  25. // window message handlers
  26. LRESULT _OnInitDialog();
  27. VOID _OnWizFinish();
  28. private:
  29. CWizardInfoBlob * _pWizInfo;
  30. HWND _hDlg;
  31. };
  32. #endif