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.

28 lines
714 B

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