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.

25 lines
512 B

  1. #ifndef __WelcmSht_h__
  2. #define __WelcmSht_h__
  3. class CWelcomeSheet {
  4. friend class CNmAkWiz;
  5. private:
  6. static BOOL APIENTRY DlgProc( HWND hDlg, UINT message, WPARAM uParam, LPARAM lParam );
  7. static CWelcomeSheet* ms_pWelcomeSheet;
  8. private: // DATA
  9. CPropertySheetPage m_PropertySheetPage;
  10. private:
  11. CWelcomeSheet( void );
  12. ~CWelcomeSheet( void );
  13. LPCPROPSHEETPAGE GetPropertySheet( void ) const { return &m_PropertySheetPage;}
  14. };
  15. #endif // __WelcmSht_h__