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.

46 lines
962 B

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