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.

31 lines
829 B

  1. #pragma once
  2. class CImportOrExport : public CPropertyPageImpl<CImportOrExport>
  3. {
  4. typedef CPropertyPageImpl<CImportOrExport> BaseClass;
  5. public:
  6. enum{ IDD = IDD_WP_IMPORTOREXPORT };
  7. BEGIN_MSG_MAP(CImportOrExport)
  8. MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
  9. COMMAND_CODE_HANDLER( BN_DBLCLK, OnDoubleClick )
  10. CHAIN_MSG_MAP(BaseClass)
  11. END_MSG_MAP()
  12. CImportOrExport ( CWizardSheet* pTheSheet );
  13. int OnWizardNext ( void );
  14. BOOL OnSetActive ( void );
  15. LRESULT OnInitDialog ( UINT, WPARAM, LPARAM, BOOL& );
  16. LRESULT OnDoubleClick ( WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled );
  17. private:
  18. CWizardSheet* m_pTheSheet;
  19. CString m_strTitle;
  20. CString m_strSubTitle;
  21. };