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.

40 lines
627 B

  1. #pragma once
  2. class CImportFinishPage : public CPropertyPageImpl<CImportFinishPage>
  3. {
  4. typedef CPropertyPageImpl<CImportFinishPage> BaseClass;
  5. public:
  6. enum{ IDD = IDD_WPIMP_FINISH };
  7. BEGIN_MSG_MAP(CImportFinishPage)
  8. MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
  9. CHAIN_MSG_MAP(BaseClass)
  10. END_MSG_MAP()
  11. CImportFinishPage( CWizardSheet* pTheSheet ) :
  12. m_pTheSheet( pTheSheet )
  13. {
  14. m_psp.dwFlags |= PSP_HIDEHEADER;
  15. }
  16. LRESULT OnInitDialog( UINT, WPARAM, LPARAM, BOOL& );
  17. BOOL OnSetActive();
  18. private:
  19. CWizardSheet* m_pTheSheet;
  20. };