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.
|
|
#ifndef __SetInSht_h__
#define __SetInSht_h__
#include "filepane.h"
class CIntroSheet { friend class CNmAkWiz; private: static BOOL APIENTRY DlgProc( HWND hDlg, UINT message, WPARAM uParam, LPARAM lParam ); static CIntroSheet* ms_pIntroSheet;
CFilePanePropWnd2 * m_pFilePane; CPropertySheetPage m_PropertySheetPage; BOOL m_bBeenToNext;
public: CIntroSheet(void); ~CIntroSheet(void); void _CreateFilePane(HWND hDlg); CFilePanePropWnd2 * GetFilePane() { return m_pFilePane; }
private: LPCPROPSHEETPAGE GetPropertySheet( void ) const { return &m_PropertySheetPage;} };
#endif // __SetInSht_h__
|