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.

30 lines
684 B

  1. #ifndef __FinishDg_h__
  2. #define __FinishDg_h__
  3. #include "filepane.h"
  4. class CFinishSheet
  5. {
  6. friend class CNmAkWiz;
  7. private: // DATA
  8. CPropertySheetPage m_PropertySheetPage;
  9. CFilePanePropWnd2 * m_pFilePane;
  10. static CFinishSheet * ms_pFinishSheet;
  11. public:
  12. CFilePanePropWnd2 * GetFilePane(void) const {return m_pFilePane;}
  13. private:
  14. static BOOL APIENTRY DlgProc( HWND hDlg, UINT message, WPARAM uParam, LPARAM lParam );
  15. CFinishSheet( void );
  16. ~CFinishSheet( void );
  17. void _CreateFilePane(HWND hDlg);
  18. LPCPROPSHEETPAGE GetPropertySheet( void ) const { return &m_PropertySheetPage;}
  19. };
  20. #endif // __FinishDg_h__