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.
25 lines
512 B
25 lines
512 B
#ifndef __WelcmSht_h__
|
|
#define __WelcmSht_h__
|
|
|
|
|
|
class CWelcomeSheet {
|
|
|
|
friend class CNmAkWiz;
|
|
|
|
private:
|
|
static BOOL APIENTRY DlgProc( HWND hDlg, UINT message, WPARAM uParam, LPARAM lParam );
|
|
static CWelcomeSheet* ms_pWelcomeSheet;
|
|
|
|
|
|
private: // DATA
|
|
CPropertySheetPage m_PropertySheetPage;
|
|
|
|
private:
|
|
CWelcomeSheet( void );
|
|
~CWelcomeSheet( void );
|
|
|
|
LPCPROPSHEETPAGE GetPropertySheet( void ) const { return &m_PropertySheetPage;}
|
|
};
|
|
|
|
|
|
#endif // __WelcmSht_h__
|