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.

66 lines
1.4 KiB

  1. /*++
  2. Copyright (c) 1994-95 Microsoft Corporation
  3. Module Name:
  4. srvpsht.h
  5. Abstract:
  6. Server property sheet implementation.
  7. Author:
  8. Don Ryan (donryan) 17-Jan-1995
  9. Environment:
  10. User Mode - Win32
  11. Revision History:
  12. Jeff Parham (jeffparh) 16-Jan-1996
  13. o Added definition for DoModal() to facilitate in keeping the
  14. replication property page from saving whenever it lost focus.
  15. Jeff Parham (jeffparh) 28-Feb-1996
  16. o Removed DoModal() override as it is no longer needed (and in
  17. fact breaks) under MFC4.
  18. --*/
  19. #ifndef _SRVPSHT_H_
  20. #define _SRVPSHT_H_
  21. #include "srvppgr.h"
  22. #include "srvppgp.h"
  23. class CServerPropertySheet : public CPropertySheet
  24. {
  25. DECLARE_DYNAMIC(CServerPropertySheet)
  26. private:
  27. CServerPropertyPageReplication m_replPage;
  28. CServerPropertyPageProducts m_productPage;
  29. public:
  30. DWORD m_fUpdateHint;
  31. public:
  32. CServerPropertySheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  33. CServerPropertySheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  34. virtual ~CServerPropertySheet();
  35. void InitPages(CServer* pServer);
  36. //{{AFX_VIRTUAL(CServerPropertySheet)
  37. //}}AFX_VIRTUAL
  38. protected:
  39. //{{AFX_MSG(CServerPropertySheet)
  40. afx_msg void OnHelp();
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. #endif // _SRVPSHT_H_