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.

60 lines
1.2 KiB

  1. /*++
  2. Copyright (c) 1994-95 Microsoft Corporation
  3. Module Name:
  4. prdpsht.h
  5. Abstract:
  6. Product property sheet implementation.
  7. Author:
  8. Don Ryan (donryan) 05-Feb-1995
  9. Environment:
  10. User Mode - Win32
  11. Revision History:
  12. --*/
  13. #ifndef _PRDPSHT_H_
  14. #define _PRDPSHT_H_
  15. #include "prdppgu.h"
  16. #include "prdppgl.h"
  17. #include "prdppgs.h"
  18. class CProductPropertySheet : public CPropertySheet
  19. {
  20. DECLARE_DYNAMIC(CProductPropertySheet)
  21. private:
  22. CProductPropertyPageUsers m_usersPage;
  23. CProductPropertyPageServers m_serversPage;
  24. CProductPropertyPageLicenses m_licensesPage;
  25. public:
  26. DWORD m_fUpdateHint;
  27. public:
  28. CProductPropertySheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  29. CProductPropertySheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  30. virtual ~CProductPropertySheet();
  31. void InitPages(CProduct* pProduct, BOOL bUserProperties = TRUE);
  32. //{{AFX_VIRTUAL(CProductPropertySheet)
  33. //}}AFX_VIRTUAL
  34. protected:
  35. //{{AFX_MSG(CProductPropertySheet)
  36. afx_msg void OnHelp();
  37. //}}AFX_MSG
  38. DECLARE_MESSAGE_MAP()
  39. };
  40. #endif // _PRDPSHT_H_